forked from joaomede/vue3-json-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.16 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
94
95
96
97
98
99
100
101
{
"name": "vue3-json-editor",
"version": "1.1.6",
"description": "A json editor of vue",
"main": "dist/vue3-json-editor.cjs.prod.js",
"module": "dist/vue3-json-editor.esm.prod.js",
"unpkg": "dist/vue3-json-editor.umd.prod.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/joaomede/vue3-json-editor.git"
},
"bugs": {
"url": "https://github.com/joaomede/vue3-json-editor/issues"
},
"homepage": "https://github.com/joaomede/vue3-json-editor#readme",
"author": "liuqi41",
"keywords": [
"vue-json-editor",
"vuejsoneditor",
"json-editor",
"jsoneditor",
"json",
"eidtor",
"vue"
],
"contributors": [
"Stefano Valenzano <[email protected]> (https://tuttarealstep.github.io/)",
"Duncan Lock (https://github.com/dflock)",
"Jean-Pierre (https://github.com/jpbecotte)",
"tianzhihen (https://github.com/tianzhihen)",
"alexmgillis (https://github.com/alexmgillis)",
"DrCoc (https://github.com/DrCoc)",
"Aymeric Hermant (https://github.com/ahermant/)",
"João Medeiros (https://github.com/joaomede)"
],
"license": "ISC",
"scripts": {
"dev": "vue-cli-service serve",
"build": "rimraf dist && rollup --config rollup.config.js",
"dev_vite": "vite",
"build_vite": "vue-tsc --noEmit && vite build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"release": "standard-version && git push --tags",
"serve": "vite preview"
},
"dependencies": {
"core-js": "^3.21.1",
"vue": "^3.2.31"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.17",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^7.0.0",
"git-cz": "^4.7.6",
"postcss": "^8.3.0",
"postcss-url": "^10.1.3",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"standard-version": "^9.3.0",
"typescript": "^4.3.2",
"vite": "^2.8.6",
"vue-jest": "^5.0.0-0",
"vue-tsc": "^0.0.24"
}
}