-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
82 lines (82 loc) · 2.51 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
{
"name": "kitsu-publisher",
"version": "0.5.1",
"description": "Desktop publisher for Kitsu",
"author": "CGWire <[email protected]>",
"repository": "https://github.com/cgwire/kitsu-publisher-next",
"main": "app/main/dist/index.cjs",
"scripts": {
"dev": "node scripts/watch.js",
"prebuild": "cross-env MODE=production npm run build:js",
"build": "electron-builder build --config electron-builder.config.js --dir",
"prebuild:all": "cross-env MODE=production npm run build:js",
"build:all": "electron-builder build --config electron-builder.config.js",
"build:js": "node scripts/build.js",
"zip_connectors": "node scripts/zip_connectors.js",
"prebuild_publish": "cross-env MODE=production npm run build:js",
"build_publish": "electron-builder build --config electron-builder.config.js -p always",
"pretest": "npm run build:js",
"test": "node tests/app.spec.js",
"lint": "eslint --ext .js,.vue,.ts --ignore-path .eslintignore --fix .",
"pretty": "prettier --write ."
},
"dependencies": {
"@google/model-viewer": "2.0.2",
"ansi_up": "5.1.0",
"apisauce": "2.1.6",
"color-hash": "2.0.1",
"color-string": "1.9.1",
"colors": "1.4.0",
"electron-store": "8.0.1",
"electron-window-state": "5.0.3",
"fabric": "5.2.4",
"format-unicorn": "1.1.1",
"iconv-lite": "0.6.3",
"marked": "4.1.1",
"moment-timezone": "0.5.37",
"open": "8.4.0",
"papaparse": "5.3.2",
"prettier": "2.7.1",
"sanitize-html": "2.7.2",
"socket.io-client": "2.4.0",
"superagent": "8.0.0",
"thenby": "1.3.4",
"uuid": "9.0.0",
"vue": "3.2.40",
"vue-drag-drop": "1.1.4",
"vue-feather": "2.0.0",
"vue-i18n": "9.2.2",
"vue-router": "4.1.5",
"vue-slider-component": "4.1.0-beta.2",
"vue-websocket-next": "0.2.7",
"vue3-datepicker": "0.3.4",
"vue3-lazyload": "0.3.6",
"vue3-popper": "1.5.0",
"vuex": "4.0.2",
"vuex-router-sync": "6.0.0-rc.1",
"wavesurfer.js": "6.3.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "3.1.2",
"archiver": "5.3.1",
"browserslist": "4.21.4",
"cross-env": "7.0.3",
"electron": "12.2.3",
"electron-builder": "23.3.3",
"electron-devtools-installer": "3.2.0",
"eslint": "8.24.0",
"eslint-plugin-vue": "9.6.0",
"playwright": "1.26.1",
"sass": "1.55.0",
"sass-loader": "13.1.0",
"vite": "3.1.6",
"vite-plugin-eslint": "1.8.1"
},
"browserslist": [
"Chrome 106"
],
"engines": {
"node": ">=16.11",
"npm": ">=8.1"
}
}