-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
46
47
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"all": "yarn clean && yarn build && yarn test && yarn lint && yarn docs && yarn docs-legacy",
"clean": "rimraf docs/ && 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": "typedoc",
"docs-legacy": "lerna run docs-legacy",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@gltf-transform/core": "^4.0.8",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.5",
"cross-env": "^7.0.2",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-html": "^8.1.2",
"globals": "^15.14.0",
"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.27.7",
"typescript": "^5.4.5",
"typescript-eslint": "^8.18.2"
},
"name": "three-vrm"
}