-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
64 lines (64 loc) · 1.75 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": "timechart",
"version": "1.0.0-beta.10",
"description": "An chart library specialized for large-scale time-series data, built on WebGL.",
"repository": {
"url": "https://github.com/huww98/TimeChart.git",
"type": "git"
},
"main": "dist/timechart.umd.js",
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"typesVersions": {
"*": {
"dist/*": [
"dist/*"
],
"*": [
"dist/lib/*",
"dist/lib/*/index"
]
}
},
"files": [
"dist"
],
"exports": {
".": "./dist/lib/index.js",
"./*": "./dist/lib/*"
},
"scripts": {
"demo": "http-server -c1 -o /demo/index.html",
"build": "tsc && rollup -c",
"start": "rollup -c -w",
"test": "tsd && jest",
"prepare": "npm run build"
},
"author": "huww98 <[email protected]>",
"license": "MIT",
"dependencies": {
"d3-axis": "^3.0.0",
"d3-color": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"gl-matrix": "^3.3.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/d3-axis": "^3.0.1",
"@types/d3-color": "^3.0.2",
"@types/d3-scale": "^4.0.1",
"@types/d3-selection": "^3.0.1",
"@types/jest": "^29.5.2",
"http-server": "^14.0.0",
"jest": "^29.5.0",
"rollup": "^3.25.0",
"ts-jest": "^29.1.0",
"tsd": "^0.28.1",
"typescript": "^5.1.3"
}
}