-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.33 KB
/
package.json
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
{
"name": "glsl-pipeline-monorepo",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Patricio Gonzalez Vivo <[email protected]>",
"maintainers": [
"Patricio Gonzalez Vivo (https://github.com/patriciogonzalezvivo)",
"Mario Carrillo (https://github.com/marioecg)",
"Amin Shazrin (https://github.com/ammein)"
],
"scripts": {
"build": "preconstruct build",
"dev-vanilla": "preconstruct dev && yarn workspace typescript_3d_devlook dev",
"dev-react": "preconstruct dev && yarn workspace typescript_react_devlook dev",
"postinstall": "preconstruct dev && manypkg check",
"ci": "preconstruct validate && manypkg check && yarn build",
"lint": "tsc -p ./tsconfig.json --noEmit",
"release": "chmod +x ./scripts/release.sh && ./scripts/release.sh",
"clean": "rm -rf node_modules package/dist package/r3f/dist package/node_modules package/types/dist examples/**/**/node_modules examples/**/**/package-lock.json",
"update": "chmod +x ./scripts/updateAll.sh && ./scripts/updateAll.sh"
},
"workspaces": {
"packages": [
"package",
"examples/**/*"
]
},
"preconstruct": {
"packages": [
"package"
]
},
"dependencies": {
"@changesets/cli": "^2.27.8",
"@manypkg/cli": "^0.21.4",
"@preconstruct/cli": "^2.8.7"
}
}