-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (53 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "plotvue",
"private": false,
"version": "0.1.1",
"description": "Lightweight chart components for Vue 3",
"type": "module",
"license": "MIT",
"sideEffects": false,
"keywords": ["vue", "vue3", "charts", "pie-chart", "data-visualization", "components"],
"repository": {
"type": "git",
"url": "https://github.com/linska/plotvue.git"
},
"bugs": {
"url": "https://github.com/your-username/plotvue/issues"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -p tsconfig.json --declaration --emitDeclarationOnly && vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit"
},
"files": [
"dist",
"README.md"
],
"main": "dist/plotvue.umd.js",
"module": "dist/plotvue.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/plotvue.es.js",
"require": "./dist/plotvue.umd.js"
},
"./style.css": "./dist/style.css"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"devDependencies": {
"@types/node": "^24.6.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vue-tsc": "^3.1.0",
"vue": "^3.5.22"
},
"publishConfig": {
"access": "public"
}
}