-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.38 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
{
"name": "wljs-graphics3d-threejs",
"version": "0.6.1",
"description": "A ThreeJS implementation of Mathematica's Graphics3D",
"wljs-meta": {
"js": "dist/kernel.js",
"minjs": "dist/kernel.min.js",
"kernel": "src/Kernel.wl",
"styles": "src/styles.css",
"category": "Plotting & Graphics",
"figureExportRequired": true,
"cellExportRequired": true
},
"defaultPackage": true,
"repository": {
"type": "git",
"url": "https://github.com/JerryI/Mathematica-ThreeJS-graphics-engine"
},
"author": "Kirill Vasin",
"license": "GPL",
"bugs": {
"url": "https://github.com/JerryI/Mathematica-ThreeJS-graphics-engine/issues"
},
"homepage": "https://github.com/JerryI/Mathematica-ThreeJS-graphics-engine#readme",
"dependencies": {
"@fantasy-color/lab-to-rgb": "^2.1.0",
"dat.gui": "^0.7.9"
},
"devDependencies": {
"@lookingglass/webxr": "^0.3.1",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"canvas-capture": "^2.0.5",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"node-fetch": "^3.2.9",
"parcel": "^2.4.0",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"process": "^0.11.10",
"rollup": "^2.70.0",
"rollup-plugin-combine": "^2.1.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"simple-git": "^3.10.0",
"yargs": "^17.5.1"
},
"peerDependencies": {
"xatlas-web": "^0.1.0"
},
"scripts": {
"start": "cd example && parcel serve ./*.html --dist-dir ./dev-bundle/ --no-cache --no-hmr",
"build-examples": "cd example && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
"update-screenshots": "node ./scripts/push-screenshots.js",
"build": "node --max-old-space-size=8192 ./node_modules/.bin/rollup --config rollup.config.mjs",
"watch": "node --max-old-space-size=8192 ./node_modules/.bin/rollup --config rollup.config.mjs -w",
"screenshot-diff": "node ./scripts/regression-test.js",
"lint": "eslint \"./src/**/*.{js,ts}\" \"./example/*.js\"",
"prepublishOnly": "npm run build",
"restore": "mkdir _temp && cd _temp && git clone --branch dev https://github.com/JerryI/Mathematica-ThreeJS-graphics-engine && mv Mathematica-ThreeJS-graphics-engine/.git ../.git && cd .. && rm -rf _temp"
}
}