-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "mt-form-vue",
"description": "拖拽快速开发vue页面",
"private": false,
"version": "0.0.1",
"author": {
"name": "junjieyuan",
"email": "[email protected]"
},
"keywords": [
"mt",
"mt-form",
"mt-form-vue"
],
"files": [
"lib",
"bin",
"doc",
"test"
],
"main": "./lib/mt-form-vue.umd.cjs",
"module": "./lib/mt-form-vue.js",
"exports": {
".": {
"import": "./lib/mt-form-vue.js",
"require": "./lib/mt-form-vue.umd.cjs"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"build:components": "node --trace-warnings --loader ts-node/esm ./command/build.ts",
"lib": "npm run build:components",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/"
},
"dependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@types/codemirror": "^5.60.5",
"@types/lodash-es": "^4.17.6",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"ant-design-vue": "^3.2.7",
"axios": "^0.27.2",
"clipboard": "^2.0.11",
"codemirror": "^5.65.6",
"dayjs": "^1.11.3",
"less": "^4.1.3",
"mitt": "^3.0.0",
"smart-vue-i18n": "^1.0.4",
"vue": "^3.2.25",
"vue-json-pretty": "^2.1.1",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@vitejs/plugin-vue": "^2.3.3",
"ts-node": "^10.8.1",
"typescript": "^4.5.4",
"vite": "^3.0.8",
"vue-tsc": "^0.34.7"
},
"license": "Apache-2.0"
}