vuechrts 0.0.5 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +15 -11
package/package.json
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"name": "vuechrts",
|
3
|
-
"version": "0.0.
|
4
|
-
"main": "dist/index.cjs.js",
|
5
|
-
"module": "dist/index.es.js",
|
6
|
-
"types": "dist/index.d.ts",
|
7
|
-
"type": "module",
|
3
|
+
"version": "0.0.7",
|
8
4
|
"files": [
|
9
5
|
"dist"
|
10
6
|
],
|
11
|
-
"
|
12
|
-
|
13
|
-
|
14
|
-
|
7
|
+
"types": "./dist/index.d.ts",
|
8
|
+
"main": "./dist/index.cjs",
|
9
|
+
"module": "./dist/index.js",
|
10
|
+
"exports": {
|
11
|
+
".": {
|
12
|
+
"import": "./dist/index.js",
|
13
|
+
"require": "./dist/index.cjs"
|
14
|
+
}
|
15
15
|
},
|
16
16
|
"dependencies": {
|
17
17
|
"vue": "^3.5.13"
|
@@ -26,5 +26,9 @@
|
|
26
26
|
"vite": "^6.0.5",
|
27
27
|
"vue-tsc": "^2.2.0"
|
28
28
|
},
|
29
|
-
"
|
30
|
-
|
29
|
+
"scripts": {
|
30
|
+
"dev": "vite",
|
31
|
+
"build": "vue-tsc -b && vite build",
|
32
|
+
"preview": "vite preview"
|
33
|
+
}
|
34
|
+
}
|