-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@dooit/bee-color",
"version": "0.3.0-beta.0",
"description": "vue 颜色选择器",
"keywords": [
"vue3",
"color-picker"
],
"author": "guanwei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hehehai/bee-color.git"
},
"bugs": {
"url": "https://github.com/hehehai/bee-color/issues"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/bee-color.umd.js",
"import": "./dist/bee-color.es.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"main": "dist/bee-color.umd.js",
"module": "dist/bee-color.es.js",
"sideEffects": false,
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"story:dev": "histoire dev",
"story:build": "cross-env HISTOIRE_ENV=true histoire build",
"story:preview": "histoire HISTOIRE_ENV=true preview",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "bumpp --commit --push --tag && npm publish"
},
"peerDependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@arco-design/web-vue": "^2.47.1",
"@histoire/plugin-vue": "^0.16.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^11.0.3",
"ant-design-vue": "^3.2.20",
"bumpp": "^9.1.1",
"cross-env": "^7.0.3",
"element-plus": "^2.3.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-vue": "^9.14.1",
"histoire": "^0.16.1",
"less": "^4.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.1",
"vue-tsc": "^1.4.2"
},
"dependencies": {
"@ctrl/tinycolor": "^3.6.0"
}
}