This repository has been archived by the owner on Aug 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 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
{
"name": "@antd-templater/library-2.x",
"description": "基于 Vue2.x Ant Design Vue 对Tree、Table、Form等组件二次封装",
"homepage": "https://github.com/antd-templater/library-2.x",
"author": "lin pengteng <china.linpengteng@gmail.com>",
"version": "2.1.0",
"keywords": [
"front-end",
"vue-components",
"ant-design-vue"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./SForm/Helper": {
"import": "./dist/lib/S-Form/helper.mjs",
"require": "./dist/lib/S-Form/helper.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/antd-templater/library-2.x.git"
},
"bugs": {
"url": "https://github.com/antd-templater/library-2.x/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "shx rm -rf dist && rollup -c",
"pretty": "npx prettier --write --loglevel warn \"src/**/*.vue\"",
"eslint": "npx eslint --fix --quiet src --ext .vue,.js",
"format": "yarn pretty && yarn eslint"
},
"dependencies": {
"ant-design-vue": "^1.7.8",
"moment": "^2.30.1",
"vue": "2.7.16"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-dynamic-import-vars": "^1.4.4",
"@rollup/plugin-node-resolve": "14.1.0",
"@rollup/pluginutils": "^4.2.1",
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"@vue/babel-preset-jsx": "^1.4.0",
"@vue/eslint-config-standard": "^6.0.0",
"babel-plugin-import": "^1.13.8",
"cz-message-helper": "^1.3.1",
"eslint": "^8.24.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-vue": "^8.7.1",
"husky": "^8.0.3",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^13.1.0",
"postcss": "^8.4.32",
"prettier": "^2.8.1",
"rollup": "^2.79.1",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"shx": "^0.3.4",
"vue-template-compiler": "^2.7.16"
},
"config": {
"commitizen": {
"path": "node_modules/cz-message-helper"
}
},
"engines": {
"node": ">=16.0.0"
}
}