-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "@prefecthq/vue-charts",
"version": "2.0.5",
"private": false,
"keywords": [
"vue3",
"charts",
"d3"
],
"scripts": {
"serve": "vite --host --mode=demo",
"dev": "vue-tsc -w & tsc-alias -w & vite build -w",
"build:demo": "vite build --mode=demo",
"build": "vue-tsc && tsc-alias && vite build",
"lint": "eslint src && eslint demo",
"lint:fix": "eslint src --fix && eslint demo --fix",
"validate:types": "vue-tsc",
"version": "npm run changelog && git add CHANGELOG.md",
"release": "./vue-charts-release",
"changelog": "auto-changelog --package --commit-limit 0"
},
"main": "./dist/vue-charts.umd.js",
"module": "./dist/vue-charts.mjs",
"exports": {
".": {
"import": "./dist/vue-charts.mjs",
"require": "./dist/vue-charts.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"types": "./dist/types/src/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@prefecthq/eslint-config": "1.0.32",
"@types/d3": "7.4.3",
"@types/lodash.debounce": "4.0.9",
"@types/node": "20.12.2",
"@vitejs/plugin-vue": "4.5.1",
"auto-changelog": "2.4.0",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"tailwindcss": "3.4.11",
"tsc-alias": "1.8.8",
"typescript": "5.3.3",
"vite": "5.4.7",
"vite-svg-loader": "^5.1.0",
"vue-router": "^4.3.0",
"vue-tsc": "1.8.27"
},
"dependencies": {
"d3": "7.9.0",
"date-fns": "^2.30.0",
"lodash.debounce": "4.0.8"
},
"peerDependencies": {
"@prefecthq/prefect-design": "^2.0.1",
"@prefecthq/vue-compositions": "^1.5.9",
"vue": "^3.2.47"
}
}