-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "@design-automation/mobius-sim",
"version": "0.2.16",
"description": "Mobius Spatial Information Model",
"main": "build/cjs/index.js",
"module": "build/mjs/index.js",
"exports": {
".": {
"import": "./build/mjs/index.js",
"require": "./build/cjs/index.js"
},
"./libs/verb/verb": "./libs/verb/verb.js"
},
"dependencies": {
"@doodle3d/clipper-js": "^1.0.11",
"lodash": "^4.17.21",
"mathjs": "^5.10.3",
"proj4": "^2.5.0",
"three": "^0.137.5",
"underscore": "^1.13.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/lodash": "^4.14.175",
"@types/node": "^16.0.0",
"@types/three": "^0.137.0",
"@types/underscore": "^1.8.14",
"@types/webgl2": "0.0.5",
"rollup": "^2.60.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"tsc-alias": "^1.6.2",
"typedoc": "^0.22.5",
"typescript": "^4.4.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build0": "tsc && tsc-alias",
"build": "npm run build-del && npm run build-mjs && npm run build-cjs && fixup.sh",
"build-del": "if exist build del /s /q build && rmdir /s /q build",
"build-mjs": "rollup --config rollup-mjs.config.js",
"build-cjs": "tsc -p tsconfig-cjs.json",
"rollup": "rollup --config rollup.config.js",
"deploy": "npm i && npm run build && npm publish --access public",
"typedoc": "typedoc --exclude **/*.spec.ts --json typedoc-json/doc.json src/core/modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/design-automation/mobius-sim.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/design-automation/mobius-sim/issues"
},
"homepage": "https://github.com/design-automation/mobius-sim#readme",
"keywords": [
"mobius"
]
}