-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"source": "src/PowerGraph.ts",
"module": "power-graph.js",
"targets": {
"module": {
"includeNodeModules": [
"echarts",
"zrender",
"tslib",
"buffer",
"base64-js",
"ieee754",
"lit",
"@lit/reactive-element",
"@juggle/resize-observer",
"lit-html",
"lit-element",
"lit-html",
"luxon"
]
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"test": "jest --watch",
"tsc": "tsc"
},
"devDependencies": {
"@juggle/resize-observer": "^3.4.0",
"@parcel/transformer-inline-string": "^2.8.3",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.25",
"buffer": "^6.0.3",
"echarts": "^5.5.0",
"jest": "^29.7.0",
"parcel": "^2.12.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"echarts": "^5.5.0",
"lit": "^3.1.2",
"lit-element": "^4.0.4",
"lit-html": "^3.1.2",
"luxon": "^3.4.4"
},
"compilerOptions": {
"types": [
"jest",
"node"
]
}
}