-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@jpmorganchase/anu",
"version": "0.1.5",
"description": "",
"type": "module",
"files": [
"dist"
],
"main": "./dist/anu.umd.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/anu.js",
"exports": {
".": {
"import": "./dist/anu.js",
"require": "./dist/anu.umd.cjs"
}
},
"scripts": {
"compile": "vite build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && vite build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"typedoc": "typedoc --plugin typedoc-plugin-markdown --out docs/api src/index.ts",
"docs": "cd docs && npm run docs:dev",
"clean": "rm -rf ./dist"
},
"repository": {
"type": "git",
"url": "[email protected]:jpmorganchase/anu.git"
},
"keywords": [],
"author": "David Saffo",
"license": "Apache-2.0",
"peerDependencies": {
"@babylonjs/core": "5.x || 6.x || 7.x"
},
"dependencies": {
"babylon-msdf-text": "^0.0.4",
"chroma-js": "^2.4.2",
"d3-geo": "^3.1.1",
"d3-geo-projection": "^4.0.0",
"d3-scale": "^4.0.2",
"earcut": "^2.2.4",
"lodash-es": "^4.17.21",
"ol": "^7.3.0",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3"
},
"devDependencies": {
"@babylonjs/core": "^7.26.2",
"@types/chroma-js": "^2.4.3",
"@types/d3": "^7.4.0",
"@types/earcut": "^2.1.4",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.16.16",
"@types/topojson-client": "^3.1.4",
"@types/topojson-server": "^3.0.4",
"@types/topojson-simplify": "^3.0.3",
"prettier": "^2.7.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.4.3",
"vite": "^5.2.8",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-externalize-deps": "^0.8.0"
}
}