-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.46 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.46 KB
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": "form-render-vue3",
"description": "form-render-vue",
"author": "TQL<360603837@qq.com>",
"version": "1.4.5",
"files": [
"dist"
],
"types": "./dist/form-render/index.d.ts",
"style": "./dist/style.css",
"main": "./dist/form-render-vue3.umd.js",
"module": "./dist/form-render-vue3.es.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git@github.com:PathFun/swizzle.git"
},
"homepage": "https://pathfun.github.io/swizzle/form-render-vue/start/",
"exports": {
".": {
"import": "./dist/form-render-vue3.es.js",
"require": "./dist/form-render-vue3.umd.js"
},
"./dist/style.css": "./dist/style.css",
"./dist/style.less": "./dist/form-render/style.less"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"types": "vue-tsc --declaration --emitDeclarationOnly",
"vars": "lessc --js ./src/style.less dist/modifyed.css",
"preview": "vite preview",
"fix": "yarn fix:lint && yarn fix:style",
"fix:lint": "yarn lint:script --fix",
"fix:style": "stylelint --fix ./src/*.{css,less,scss,vue}",
"lint": "yarn lint:ls && yarn lint:script && yarn lint:style",
"lint:ls": "ls-lint",
"lint:script": "eslint ./src/*.{vue,js,ts,tsx}",
"lint:style": "stylelint ./src/*.{css,less,scss,vue}",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"version": "node ./scripts/generate-version",
"release": "standard-version"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"ant-design-vue": "^3.2.9",
"lodash-es": "^4.17.21",
"tinycolor2": "^1.4.2",
"vue": "^3.2.25"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@ls-lint/ls-lint": "^1.11.2",
"@types/jest": "^28.1.3",
"@types/lodash-es": "^4.17.6",
"@types/smooth-scroll": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vitest/coverage-c8": "^0.25.2",
"@vitest/ui": "^0.25.2",
"@vue/test-utils": "^2.0.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.1.1",
"happy-dom": "^7.7.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"lint-staged": "^13.0.2",
"postcss-html": "^1.4.1",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.4",
"prettier": "^2.7.1",
"rollup-plugin-copy": "^3.4.0",
"standard-version": "^9.5.0",
"stylelint": "^14.9.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-eslint": "^1.6.1",
"vitest": "^0.15.2",
"vue-tsc": "^0.34.7"
},
"peerDependencies": {
"ant-design-vue": "^3.2.9",
"vue": ">=3.2.0"
},
"lint-staged": {
"*.{ts,js,vue, tsx, jsx}": [
"prettier --write",
"eslint --fix"
],
"*.less": [
"stylelint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}