-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 856 Bytes
/
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
{
"name": "@cherie-xf/lit-echarts",
"version": "1.0.3",
"main": "dist/lit-echarts.es.js",
"exports": {
".": "./dist/lit-echarts.es.js"
},
"types": "types/lit-echarts.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"lit": "^2.1.1",
"size-sensor": "^1.0.1"
},
"devDependencies": {
"echarts": "^5.2.2",
"typescript": "^4.5.5",
"vite": "^2.7.13"
},
"peerDependencies": {
"echarts": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cherie-xf/lit-echarts"
},
"type": "module",
"publishConfig": {
"access": "public"
}
}