-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
104 lines (104 loc) · 2.64 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@pureadmin/table",
"version": "3.2.1",
"packageManager": "[email protected]",
"description": "二次封装element-plus的Table,提供灵活的配置项",
"keywords": [
"@pureadmin/table",
"element-plus",
"typescript",
"el-table",
"nuxt3",
"vue3",
"vite",
"tsx"
],
"homepage": "https://github.com/pure-admin/pure-admin-table/tree/main/#readme",
"bugs": {
"url": "https://github.com/pure-admin/pure-admin-table/issues"
},
"license": "MIT",
"author": "xiaoxian521",
"repository": {
"type": "git",
"url": "git+https://github.com/pure-admin/pure-admin-table.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"jsdelivr": "dist/index.umd.js",
"unpkg": "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"
],
"style": "dist/style.css",
"sideEffects": false,
"scripts": {
"dev": "vite",
"test": "vitest run",
"build": "vite build",
"preview": "vite preview",
"lib": "vite build && vue-tsc -p tsconfig.build.json",
"lint": "prettier --write \"packages/**/*.{ts,tsx}\" \"__tests__/table.test.tsx\" \"src/*.{ts,tsx,vue}\"",
"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": "^2.8.0",
"vue": "^3.4.37"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@pureadmin/release": "^1.1.0",
"@pureadmin/utils": "^2.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^4.4.1",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/test-utils": "^2.4.3",
"husky": "^8.0.3",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^4.3.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"typescript": "^5.3.3",
"vite": "4.5.1",
"vite-svg-loader": "^5.1.0",
"vitest": "0.34.6",
"vue-i18n": "^9.8.0",
"vue-tsc": "^1.8.27"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
]
}
}
}