forked from pixiv/three-vrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
41
42
43
44
45
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"all": "yarn clean && yarn build && yarn test && yarn lint && yarn docs",
"clean": "lerna run clean",
"dev": "cross-env NODE_ENV=development SERVE=1 node ./bin/build.mjs",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"docs": "lerna run docs",
"prepare": "husky"
},
"devDependencies": {
"@gltf-transform/core": "^4.0.8",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"cross-env": "^7.0.2",
"esbuild": "^0.24.0",
"eslint": "8",
"eslint-config-mdcs": "^5.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"lint-staged": "^15.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.26.9",
"typescript": "^5.4.5"
},
"name": "three-vrm"
}