-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 945 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 945 Bytes
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
{
"name": "vvplot",
"version": "0.4.1",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite dev"
},
"type": "module",
"module": "./dist/vvplot.esm.js",
"types": "./dist/vvplot.d.ts",
"imports": {
"#base/*": "./src/*"
},
"exports": {
".": {
"import": "./dist/vvplot.esm.js",
"types": "./dist/vvplot.d.ts"
},
"./style.css": "./dist/style.css"
},
"homepage": "https://fan-ix.github.io/vvplot/",
"repository": "https://github.com/Fan-iX/vvplot/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@vueuse/core": "^13.7.0",
"commonmark": "^0.31.2",
"d3": "^7.9.0",
"vue": "^3.5.18"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.12",
"@vitejs/plugin-vue": "^6.0.1",
"highlight.js": "^11.11.1",
"tailwind-merge": "^3.3.1",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4"
}
}