-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.14 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
{
"name": "libra-vis",
"version": "1.0.0-alpha",
"description": "A layered instrument-based interaction architecture",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/esm --declaration && esbuild dist/esm/index.js --outfile=dist/libra.js --bundle --format=esm && esbuild dist/esm/index.js --outfile=dist/libra.min.js --minify --bundle --format=esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/z-jack/IG-2022.git#libra"
},
"keywords": [
"multi-layer model",
"instrument",
"interaction",
"visualization",
"javascript"
],
"author": "z-jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/z-jack/IG-2022/issues"
},
"devDependencies": {
"esbuild": "^0.12.21",
"typescript": "^4.5.4"
},
"dependencies": {
"2d-css-matrix-parse": "^1.0.0",
"@types/d3": "^7.1.0",
"d3": "^6.7.0",
"deep-clone": "^3.0.3",
"mathjs": "^10.3.0",
"transformation-matrix": "^2.14.0",
"vega": "^5.22.1",
"vega-embed": "^6.21.0",
"vega-lite": "^5.6.0"
}
}