forked from pure-admin/pure-admin-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.52 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
{
"name": "@pureadmin/table",
"version": "2.3.3",
"description": "Use tsx syntax to encapsulate element-plus Table twice to provide flexible configuration items",
"keywords": [
"@pureadmin/table",
"element-plus",
"typescript",
"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": "https://github.com/pure-admin/pure-admin-table"
},
"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"
}
},
"files": [
"dist",
"volar.d.ts"
],
"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.3.5",
"vue": "^3.2.47"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@esbuild-kit/cjs-loader": "^2.2.0",
"@intlify/vite-plugin-vue-i18n": "^6.0.0",
"@pureadmin/release": "^1.0.0",
"@pureadmin/utils": "^1.9.3",
"@types/node": "^18.0.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/test-utils": "^2.2.3",
"husky": "^8.0.1",
"jsdom": "^20.0.2",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"resize-observer-polyfill": "^1.5.1",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-svg-loader": "^3.4.0",
"vitest": "^0.25.2",
"vue-i18n": "^9.2.2",
"vue-tsc": "^1.0.9"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack"
]
}
}
}