-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.79 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
{
"name": "makehuman.js",
"version": "0.0.1",
"description": "A MakeHuman variant with different features",
"author": "Mark-André Hopf <mhopf@mark13.org> based on work of the MakeHuman Team (www.makehumancommunity.org)",
"license": "AGPL-3.0-or-later",
"engines": {
"npm": ">=8.1.2",
"node": ">=16.10.0"
},
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/markandre13/makehuman.js.git"
},
"scripts": {
"build": "npm run build:transformer && npm run build:data && npm run build:idl && npm run build:once && npm run build:chai",
"build:once": "rollup --config rollup.config.mjs",
"build:transformer": "tsc -types node m13-es-transformer.ts",
"build:chai": "mkdir -p build/test/chai && cp test/chai/*\\.js test/chai/*\\.d\\.ts build/test/chai",
"build:data": "test -f data/directory.json || ( tsc --outDir dist/filesystem src/filesystem/build-data-dir.ts && mv -f dist/filesystem/build-data-dir.js dist/filesystem/build-data-dir.cjs && node dist/filesystem/build-data-dir.cjs ) ",
"build:idl": "corba-idl --ts-interface --ts-skeleton --ts-stub src/net/makehuman.idl src/net/fs.idl",
"rebuild:data": "rm -f data/directory.json && npm run build:data",
"build:watch": "rollup --config rollup.config.js --watch",
"build:client": "rollup --bundleConfigAsCjs --config rollup-client.config.js",
"dev:prepare": "npm run build:data && npm run build:chai && npm run build:idl",
"dev:build": "npm run build:transformer && npm run build:idl && tspc -w -p tsconfig.dev.json",
"dev:test": "npm run build:chai && if test -z \"$npm_config_file\" ; then wtr --watch 'build/test/**/*.spec.js' ; else wtr --watch \"$npm_config_file\" ; fi",
"dev:serve": "wds --node-resolve --watch --open --app-index index.dev.html",
"update": "npx npm-check-updates -u && npm install"
},
"dependencies": {
"@markandre13/usd.js": "^0.0.7",
"corba.js": "^0.2.0",
"fflate": "^0.8.2",
"gl-matrix": "^3.4.4",
"toad.js": "^0.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/chai": "^5.2.3",
"@types/chai-almost": "^1.0.3",
"@types/chai-string": "^1.4.5",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.20.2",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"rollup": "^4.60.1",
"rollup-plugin-typescript2": "^0.37.0",
"temporal-polyfill": "^0.3.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3"
}
}