-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"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": "vitest run",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"docs": "typedoc",
"docs-legacy": "lerna run docs-legacy",
"prepare": "husky",
"postinstall": "patch-package"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@gltf-transform/core": "^4.2.1",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.16",
"cross-env": "^10.1.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-html": "^8.1.3",
"globals": "^17.0.0",
"husky": "^9.1.5",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.16"
},
"name": "three-vrm"
}