-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
28 lines (28 loc) · 977 Bytes
/
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
{
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"clean": "lerna run clean --parallel",
"test": "node test/test.js",
"version": "yarn build",
"postpublish": "git push && git push --tags",
"publish:prerelease": "lerna publish prerelease --dist-tag next --force-publish '*' && yarn postpublish",
"publish:patch": "lerna publish patch --force-publish '*' && yarn postpublish",
"publish:minor": "lerna publish minor --force-publish '*' && yarn postpublish",
"publish:major": "lerna publish major --force-publish '*' && yarn postpublish"
},
"devDependencies": {
"@gltf-transform/core": "^3.7.0",
"@gltf-transform/extensions": "^3.7.0",
"@gltf-transform/functions": "^3.7.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"lerna": "^7.3.0",
"rimraf": "^5.0.1",
"rollup": "^3.29.2"
}
}