-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "vue-waterfall-mini",
"version": "1.1.4",
"author": {
"name": "Dave_12138",
"email": "[email protected]",
"url": "https://dave-12138.cn"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Dave-12138/vue-waterfall-mini"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "cross-env TARGET=lib vite build && terser dist/*.esm.js -c -m --module -o dist/vue-waterfall-mini.esm.min.js",
"build-only:example": "vite build",
"type-check": "vue-tsc --build --force",
"sent-to-webroot": "run-p build && to-webroot.bat"
},
"exports": {
".": {
"import": {
"default": "./dist/vue-waterfall-mini.esm.js",
"types": "./dist/types/main.d.ts"
},
"require": {
"default": "./dist/vue-waterfall-mini.cjs.js",
"types": "./dist/types/main.d.ts"
}
},
"./style": "./dist/style.css",
"./style.css": "./dist/style.css"
},
"main": "dist/vue-waterfall-mini.cjs.js",
"module": "dist/vue-waterfall-mini.esm.js",
"types": "dist/types/main.d.ts",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.16.10",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^11.1.0",
"cross-env": "^7.0.3",
"less": "^4.2.0",
"npm-run-all2": "^6.2.3",
"terser": "^5.34.1",
"typescript": "~5.4.5",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
},
"dependencies": {
"vue": "^3.5.10"
}
}