-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "three-particles-composite",
"version": "0.0.0",
"private": true,
"type": "module",
"devDependencies": {
"@types/jest": "^30.0.0",
"esbuild": "^0.25.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"http-server": "^14.1.1",
"jest": "^30.2.0",
"lerna": "^9.0.3",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"tsx": "^4.19.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.0.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.52.0",
"@rollup/rollup-win32-x64-msvc": "^4.52.0"
},
"scripts": {
"clean": "rimraf www && lerna run clean",
"@eslint/js": "^9.22.0",
"lint": "npm run prettier:check && eslint .",
"lint:write": "npm run prettier:write && eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"prewww": "lerna run build",
"test": "lerna run test",
"validate": "lerna run build && lerna run lint && lerna run test",
"serve": "http-server www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polyforest/three-particles.git"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"three": "^0.181.2"
}
}