-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
118 lines (118 loc) · 3.26 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@antd-templater/library-3.x",
"description": "基于 Vue3.x Ant Design Vue 对Tree、Table、Form等组件二次封装",
"homepage": "https://github.com/antd-templater/library-3.x",
"author": "lin pengteng <china.linpengteng@gmail.com>",
"license": "MIT",
"version": "4.3.21",
"keywords": [
"form",
"tree",
"table",
"front-end",
"ant-design-vue",
"vue-components"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./resolver": {
"types": "./dist/resolver.d.ts",
"import": "./dist/resolver.mjs",
"require": "./dist/resolver.cjs"
},
"./globals": {
"types": "./dist/globals.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/antd-templater/library-3.x.git"
},
"bugs": {
"url": "https://github.com/antd-templater/library-3.x/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "shx rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript",
"eslint": "npx eslint --fix --quiet src/**",
"release": "release-it",
"prepare": "husky"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"ant-design-vue": "^4.2.6",
"dayjs": "^1.11.13",
"js-simpler": "^1.7.0",
"less": "^4.2.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-types": "^5.1.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ctrl/tinycolor": "^4.1.0",
"@eslint/config-inspector": "^0.6.0",
"@eslint/js": "^9.17.0",
"@release-it/conventional-changelog": "^9.0.3",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/pluginutils": "^5.1.4",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vue/compiler-sfc": "^3.5.13",
"cz-message-helper": "^2.0.0",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"rollup": "^4.28.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"volar-service-prettyhtml": "^0.0.62",
"vue-template-compiler": "^2.7.16",
"vue-tsc": "^2.1.10"
},
"config": {
"cz-message-helper": {
"config": ".cz-message.cjs"
},
"commitizen": {
"path": "node_modules/cz-message-helper"
}
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"packageManager": "pnpm@9.12.3"
}