-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.67 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
{
"deprecated": false,
"license": "MIT",
"main": "dist/vue-dynamic-form.umd.js",
"types": "dist/main.d.ts",
"name": "@imengyu/vue-dynamic-form",
"version": "0.1.1",
"description": "A data driven form component for vue3",
"files": [
"dist"
],
"keywords": [
"vue",
"form",
"dynamic-form"
],
"homepage": "https://github.com/imengyu/vue-dynamic-form",
"author": "imengyu",
"scripts": {
"dev": "vite",
"test:unit": "vitest --environment jsdom --root src/",
"build": "vite build library",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"async-validator": "^4.2.5",
"scroll-into-view-if-needed": "^3.0.3",
"vue": "^3.2.45"
},
"devDependencies": {
"@arco-design/web-vue": "^2.41.0",
"@codemirror/lang-json": "^6.0.1",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.12",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"ant-design-vue": "^4.2.1",
"codemirror": "^6.0.1",
"element-plus": "^2.7.2",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"highlight.js": "^11.9.0",
"jsdom": "^20.0.3",
"npm-run-all": "^4.1.5",
"sass": "^1.57.1",
"typescript": "~4.7.4",
"vite": "^4.0.0",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-markdown-preview": "^1.1.1",
"vitepress": "^1.1.4",
"vitest": "^0.25.6",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.1.6",
"vue-tsc": "^1.0.12"
}
}