vuechrts 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +11 -5
package/package.json
CHANGED
@@ -1,13 +1,19 @@
|
|
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.6",
|
8
4
|
"files": [
|
9
5
|
"dist"
|
10
6
|
],
|
7
|
+
"types": "./dist/index.d.ts",
|
8
|
+
"main": "./dist/index.cjs",
|
9
|
+
"module": "./dist/index.js",
|
10
|
+
|
11
|
+
"exports": {
|
12
|
+
".": {
|
13
|
+
"import": "./dist/index.js",
|
14
|
+
"require": "./dist/index.cjs"
|
15
|
+
}
|
16
|
+
},
|
11
17
|
"scripts": {
|
12
18
|
"dev": "vite",
|
13
19
|
"build": "vue-tsc -b && vite build",
|