-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.59 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
{
"name": "shellfish",
"version": "1.0.0",
"description": "Shellfish",
"author": "Martin Grimme",
"license": "MIT",
"devDependencies": {
"@pixi/jsdoc-template": "~2.6.0",
"jsdoc": "~3.6.10",
"npm-run-all": "~4.1.5",
"webfont": "~11.2.26"
},
"scripts": {
"generate-docs": "jsdoc -c doc/conf.json -u doc/tutorial",
"build-icons": "node icons/webfont.js",
"build-all": "npm-run-all build-icons build-shellfish-core build-shellfish-ui build-shellfish-3d build-shellfish-server",
"build-shellfish-core": "node tools/make-bundle.js dist/shellfish.pkg shellfish-core",
"build-shellfish-ui": "node tools/make-bundle.js dist/shellfish-ui.pkg shellfish-ui",
"build-shellfish-3d": "node tools/make-bundle.js dist/shellfish-3d.pkg shellfish-3d",
"build-shellfish-server": "node tools/make-bundle.js dist/shellfish-server.pkg shellfish-server",
"build-legacy-all": "npm-run-all build-icons build-legacy-shellfish-core build-legacy-shellfish-ui build-legacy-shellfish-3d build-legacy-shellfish-server",
"build-legacy-shellfish-core": "node tools/make-bundle.js --legacy dist/shellfish.pkg shellfish-core",
"build-legacy-shellfish-ui": "node tools/make-bundle.js --legacy dist/shellfish-ui.pkg shellfish-ui",
"build-legacy-shellfish-3d": "node tools/make-bundle.js --legacy dist/shellfish-3d.pkg shellfish-3d",
"build-legacy-shellfish-server": "node tools/make-bundle.js --legacy dist/shellfish-server.pkg shellfish-server",
"run-gallery": "node dist/shellfish-node.js dist/shellfish.pkg dist/shellfish-server.pkg dist/require.js gallery/main.shui"
}
}