-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.25 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
84
85
{
"name": "@pureadmin/descriptions",
"version": "1.2.1",
"description": "Use tsx syntax to encapsulate element-plus Descriptions twice to provide flexible configuration items",
"keywords": [
"@pureadmin/descriptions",
"element-plus",
"typescript",
"vue3",
"vite",
"tsx"
],
"homepage": "https://github.com/pure-admin/pure-admin-descriptions/tree/main/#readme",
"bugs": {
"url": "https://github.com/pure-admin/pure-admin-descriptions/issues"
},
"license": "MIT",
"author": "xiaoxian521",
"repository": {
"type": "git",
"url": "https://github.com/pure-admin/pure-admin-descriptions"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./volar": {
"types": "./volar.d.ts"
}
},
"files": [
"dist",
"volar.d.ts"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"svgo": "svgo -f . -r",
"lib": "vite build && vue-tsc -p tsconfig.build.json",
"lint": "prettier --write \"packages/**/*.{ts,tsx}\"",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"pub": "pub lib",
"prepare": "husky install"
},
"peerDependencies": {
"element-plus": "^2.0.0"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.6",
"@pureadmin/utils": "^2.4.5",
"element-plus": "^2.2.17",
"vue": "^3.2.40"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@esbuild-kit/cjs-loader": "^2.2.0",
"@pureadmin/release": "^1.1.0",
"@types/node": "^18.0.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"svgo": "^3.2.0",
"typescript": "^4.7.4",
"vite": "^3.1.6",
"vue-tsc": "^0.38.1"
}
}