-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "vue-fortune-wheel",
"version": "2.1.0",
"type": "module",
"author": "Xiaolin Zhu",
"license": "MIT",
"bugs": {
"email": "290353548@qq.com"
},
"keywords": [
"wheel-of-fortune",
"vue-wheel-of-fortune",
"vue-lucky-wheel",
"vue-luckywheel",
"vue-wheel",
"vue-turntable",
"vue-turnplate",
"vue转盘",
"vue-转盘"
],
"description": "Component \"Wheel of Fortune\" for Vue",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"files": ["dist"],
"main": "./dist/vue-fortune-wheel.umd.cjs",
"module": "./dist/vue-fortune-wheel.js",
"exports": {
".": {
"import": "./dist/vue-fortune-wheel.js",
"require": "./dist/vue-fortune-wheel.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@vitejs/plugin-vue": "^4.1.0",
"sass": "^1.62.1",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vue-tsc": "^1.4.2"
}
}