forked from donmccurdy/glTF-Transform
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.85 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"private": true,
"name": "gltf-transform",
"author": "Don McCurdy <dm@donmccurdy.com>",
"repository": "github:donmccurdy/glTF-Transform",
"license": "MIT",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "lerna run build",
"build:watch": "lerna run build:watch --parallel --stream",
"lerna": "lerna",
"tsx": "tsx",
"clean:dist": "rm -rf packages/*/dist/** | true",
"clean:deps": "rm -rf packages/*/node_modules/** | true",
"clean:test": "rm -rf packages/*/test/out/** | true",
"test": "ava --no-worker-threads",
"test:debug": "ava debug --no-worker-threads",
"coverage": "c8 --config .github/.c8rc --reporter=lcov --reporter=text yarn test --tap",
"coverage:report": "c8 report --config .github/.c8rc --reporter=text-lcov > coverage/coverage.lcov",
"lint": "biome check packages/*/{src,test}",
"lint:ci": "biome ci packages/*/{src,test}",
"validate": "scripts/validate.js",
"bench": "tsx benchmarks/benchmark.ts",
"preversion": "yarn test",
"version": "yarn clean:dist && yarn build && yarn bench --report-version --print && yarn run docs:cli && git add -u benchmarks/results packages/docs",
"postpublish": "git push && git push --tags && yarn run docs:deploy:prod",
"docs:cli": "CLI_HELP=\"$(gltf-transform -h --no-editorial)\" && perl -i -0pe 's/\\Q<!-- begin:cli_help -->\\E.*\\Q<!-- end:cli_help -->\\E/<!-- begin:cli_help -->\n\\`\\`\\`plaintext$ENV{'CLI_HELP'}\\n\\`\\`\\`\n<!-- end:cli_help -->/gmsi' packages/docs/src/lib/pages/cli.md",
"docs:deploy:prod": "tsx scripts/check-release.ts && yarn docs:deploy --prod || echo \"! Skipping website deployment.\"",
"docs:deploy": "yarn build && vercel"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@tweakpane/core": "^1.1.9",
"@types/command-exists": "1.2.3",
"@types/d3-dsv": "^3.0.7",
"@types/draco3dgltf": "1.4.3",
"@types/jsdom": "^21.1.7",
"@types/ndarray": "1.0.14",
"@types/node": "24.0.3",
"@types/node-gzip": "1.1.3",
"@types/semver": "^7.7.0",
"@types/three": "^0.177.0",
"@types/wrap-ansi": "^8.1.0",
"ava": "^6.4.0",
"c8": "^10.1.3",
"d3-dsv": "^3.0.1",
"draco3dgltf": "1.5.7",
"gl-matrix": "^3.4.3",
"gltf-validator": "2.0.0-dev.3.10",
"jsdom": "^26.1.0",
"keyframe-resample": "^0.1.0",
"lerna": "8.2.2",
"meshoptimizer": "0.24.0",
"microbundle": "0.15.1",
"mikktspace": "1.1.1",
"semver": "^7.7.2",
"simple-dropzone": "^0.8.3",
"three": "^0.177.0",
"tinybench": "^4.0.0",
"tsx": "^4.20.3",
"tweakpane": "^3.1.10",
"tweakpane-plugin-thumbnail-list": "^0.3.0",
"typescript": "5.8.3",
"vite": "^7.0.0",
"watlas": "^1.0.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx"
]
},
"packageManager": "yarn@4.9.2"
}