forked from biigpongsatorn/vue-element-loading
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.07 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
{
"name": "kod-loader",
"description": "KingOfDog-themed Loading inside a container or full screen for Vue.js",
"version": "1.2.1",
"author": "kingofdog <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kingofdog/vue-element-loading.git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/kod-logo.umd.js",
"module": "./dist/kod-logo.es.js",
"exports": {
".": {
"import": "./dist/kod-logo.es.js",
"require": "./dist/kod-logo.umd.js"
},
"./dist/kod-logo.css": {
"import": "./dist/kod-logo.css",
"require": "./dist/kod-logo.css"
}
},
"types": "./dist/main.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"path": "^0.12.7",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vue-tsc": "^1.0.11"
}
}