-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.49 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@codedpalette/sketches",
"version": "0.0.30",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codedpalette/sketches.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"dist"
],
"module": "./dist/sketches.js",
"exports": {
".": {
"import": "./dist/sketches.js"
}
},
"types": "./dist/sketches.d.ts",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint --fix .",
"prepare": "husky"
},
"dependencies": {
"@flatten-js/core": "^1.6.2",
"@tweenjs/tween.js": "^25.0.0",
"canvas-capture": "^2.1.1",
"culori": "^4.0.1",
"delaunator": "^5.0.1",
"extract-colors": "^4.1.1",
"lil-gui": "^0.20.0",
"pixi-filters": "^6.1.0",
"pixi.js": "^8.8.1",
"random-js": "^2.1.0",
"rbush": "^4.0.1",
"rbush-knn": "github:mourner/rbush-knn",
"simplex-noise": "^4.0.3",
"spectorjs": "github:BabylonJS/Spector.js",
"stats.js": "^0.17.0",
"three": "^0.174.0",
"twgl.js": "^5.5.4",
"voronoijs": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@laynezh/vite-plugin-lib-assets": "1.1.0",
"@types/culori": "^2.1.1",
"@types/delaunator": "^5.0.3",
"@types/rbush": "^4.0.0",
"@types/stats.js": "^0.17.3",
"@types/three": "^0.174.0",
"electron": "^35.0.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^3.9.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.2",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-plugin-glsl": "^1.3.3",
"vite-tsconfig-paths": "^5.1.4"
},
"packageManager": "pnpm@10.6.3+sha512.bb45e34d50a9a76e858a95837301bfb6bd6d35aea2c5d52094fa497a467c43f5c440103ce2511e9e0a2f89c3d6071baac3358fc68ac6fb75e2ceb3d2736065e6",
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}