-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
88 lines (88 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vue3-ts-jsoneditor",
"version": "2.11.3",
"author": {
"name": "Alex Guzey",
"email": "alex.guzey@gmail.com"
},
"private": false,
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/JsonEditorPlugin.d.ts"
},
"./dist/vanilla-jsoneditor.js": "./dist/vanilla-jsoneditor.js",
"./styles.css": "./dist/style.css"
},
"imports": {
"#query-languages.mjs": "./dist/index2.mjs"
},
"types": "dist/JsonEditorPlugin.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bestkolobok/vue3-jsoneditor.git"
},
"bugs": {
"url": "https://github.com/bestkolobok/vue3-jsoneditor/issues"
},
"scripts": {
"dev": "vite",
"deploy": "sh deploy.sh patch",
"deploy:minor": "sh deploy.sh minor",
"deploy:major": "sh deploy.sh major",
"build": "run-p type-check build-only",
"build:gh": "VITECONFIG_build_lib=false VITECONFIG_build_rollupOptions=false VITECONFIG_build_cssCodeSplit=true VITECONFIG_build_outDir=gh-dist VITECONFIG_base='/vue3-jsoneditor' run-p build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"immutable-json-patch": "^6.0.0",
"vanilla-jsoneditor": "^0.21.6",
"vue": "^3.4.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsoneditor": "^9.5.1",
"@types/node": "^18.6.1",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"sass": "^1.69.7",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-chunk-split": "0.5.0",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-env-config": "^2.0.0",
"vite-plugin-libcss": "^1.0.5",
"vue-tsc": "^1.8.27"
},
"keywords": [
"vue",
"jsoneditor",
"json",
"editor"
],
"funding": [
"https://uahelp.monobank.ua/",
"https://bank.gov.ua/en/news/all/natsionalniy-bank-vidkriv-spetsrahunok-dlya-zboru-koshtiv-na-potrebi-armiyi",
"https://www.comebackalive.in.ua/",
"https://armysos.com.ua/donate/",
"http://wings-phoenix.org.ua/en/about-fund/",
"https://novaposhta.ua/eng/",
"https://voices.org.ua/en/donat/",
"https://www.unicef.org.uk/donate/donate-now-to-protect-children-in-ukraine/",
"https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=FYFZPVQN8J7YC&source=url",
"https://novaukraine.org/"
]
}