-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.14 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.14 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
{
"name": "vue-json-ui-editor",
"version": "2.0.0",
"description": "A Vue 2 JSON Schema based form editor component with TypeScript support",
"type": "module",
"main": "dist/vue-json-ui-editor.umd.js",
"module": "dist/vue-json-ui-editor.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-json-ui-editor.es.js",
"require": "./dist/vue-json-ui-editor.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"build:lib": "vue-tsc && vite build --mode lib",
"preview": "vite preview",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"type-check": "vue-tsc --noEmit",
"lint": "biome format --write src/",
"format": "biome format --write src/",
"check": "npm run type-check && npm run lint && npm run test",
"tag": "git tag v`node -p 'require(\"./package\").version'`",
"prepublishOnly": "checknpm run check && npm build:lib",
"postpublish": "npm run tag && git push && git push --tags"
},
"dependencies": {
"element-ui": "^2.15.14",
"vue": "^2.7.16"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue2": "^2.3.1",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"@vue/test-utils": "^1.3.6",
"autoprefixer": "^10.4.21",
"jsdom": "^23.0.0",
"postcss-import": "^16.1.1",
"typescript": "5.6.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.0",
"vitest": "^1.0.0",
"vue-tsc": "2.0.29"
},
"peerDependencies": {
"vue": "^2.7.0"
},
"keywords": [
"vue",
"vue2",
"typescript",
"json-schema",
"form-editor",
"ui-component",
"vite"
],
"author": "Vue JSON UI Editor Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vue-json-ui-editor/vue-json-ui-editor.git"
},
"bugs": {
"url": "https://github.com/vue-json-ui-editor/vue-json-ui-editor/issues"
},
"homepage": "https://github.com/vue-json-ui-editor/vue-json-ui-editor#readme"
}