This repository was archived by the owner on May 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.17 KB
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
{
"private": true,
"type": "module",
"author": "luct",
"license": "MIT",
"keywords": [
"vue",
"vue3",
"element-plus",
"component"
],
"scripts": {
"play": "pnpm -C play dev",
"docs": "pnpm -C docs dev",
"stub:build": "pnpm run -C scripts/build stub",
"build": "pnpm -C scripts/build build",
"docs:build": "pnpm run -C docs build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix --ignore-pattern docs/examples/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n ./scripts/changelog.cjs",
"postinstall": "pnpm stub:build",
"prepare": "husky",
"release": "tsx ./scripts/release.ts"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"element-plus": "^2.7.2",
"vue": "^3.4.33"
},
"devDependencies": {
"@bole-component/components": "workspace:components",
"@bole-component/resolver": "workspace:*",
"@bole-component/theme": "workspace:*",
"@bole-component/utils": "workspace:*",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/shared": "^3.4.34",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"bole-component": "workspace:*",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^5.0.0",
"enquirer": "^2.4.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"fs-extra": "^11.2.0",
"husky": "^9.1.1",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"sass": "^1.66.1",
"semver": "^7.6.3",
"tsx": "4.7.2",
"typescript": "~5.4.0",
"unbuild": "^2.0.0",
"vite": "^5.3.1",
"vite-plugin-dts": "3.9.1",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.21"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"pnpm run lint"
]
},
"homepage": "https://lstgithub578.github.io/bole-component"
}