forked from donmccurdy/glTF-Transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"name": "gltf-transform",
"author": "Don McCurdy <dm@donmccurdy.com>",
"repository": "github:donmccurdy/glTF-Transform",
"license": "MIT",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dist": "lerna run dist",
"watch": "lerna run watch --parallel --stream",
"watch:debug": "lerna run watch:debug --parallel --stream",
"clean:dist": "rm -rf packages/*/dist/**",
"clean:deps": "rm -rf packages/*/node_modules/**",
"test": "ava packages/{core,extensions,functions,cli}/test/**/*.test.ts",
"coverage": "c8 --reporter=lcov --reporter=text yarn test --tap",
"coverage:report": "c8 report --reporter=text-lcov > coverage/coverage.lcov",
"lint": "eslint \"packages/*/{src,test}/**/*.ts\"",
"validate": "scripts/validate.js",
"preversion": "yarn run test",
"version": "yarn clean:dist && lerna run dist && gltf-transform -h > docs/CLI_HELP.md && git add -u docs",
"postpublish": "git push && git push --tags && yarn run docs:deploy",
"docs": "typedoc packages/core/src/core.ts packages/extensions/src/extensions.ts packages/functions/src/index.ts docs/pages.ts --out docs/dist/ --name glTF-Transform --excludeInternal --excludeNotDocumented --theme docs/theme --media docs/media --readme docs/INDEX.md --includes docs --tsconfig docs/tsconfig.json",
"docs:watch": "concurrently \"yarn docs --watch\" \"vercel dev\"",
"docs:deploy": "yarn docs && vercel --prod"
},
"devDependencies": {
"@types/command-exists": "1.2.0",
"@types/draco3dgltf": "1.4.0",
"@types/ndarray": "1.0.11",
"@types/node": "18.15.11",
"@types/node-gzip": "1.1.0",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"canvas": "2.11.2",
"concurrently": "7.6.0",
"draco3dgltf": "1.5.6",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"gl-matrix": "^3.4.3",
"gltf-validator": "2.0.0-dev.3.9",
"lerna": "6.6.1",
"meshoptimizer": "0.18.1",
"microbundle": "0.15.1",
"mikktspace": "1.1.1",
"prettier": "2.8.7",
"source-map-support": "0.5.21",
"suppress-experimental-warnings": "^1.1.4",
"ts-node": "10.9.1",
"typedoc": "0.21.2",
"typescript": "4.9.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--require=suppress-experimental-warnings"
]
},
"dependencies": {}
}