-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.91 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
{
"name": "kobo-book-downloader-vue",
"version": "1.0.1",
"private": true,
"type": "module",
"bin": "dist/index.cjs",
"scripts": {
"dev:frontend": "vite",
"dev:backend": "vite-node --watch server/index.ts",
"dev": "concurrently 'npm:dev:frontend' 'npm:dev:backend'",
"build": "npm run build:clean && npm run build:env && npm run build:frontend && npm run build:backend",
"build:clean": "rimraf dist && node -e \"require('make-dir')('dist')\"",
"build:env": "vite-node dotenv-bundle",
"build:frontend": "vite build",
"build:backend": "rollup --config rollup.config.ts --configPlugin \"rollup-plugin-typescript2={tsconfig: 'tsconfig.node.json'}\"",
"publish": "rimraf artifacts && npm run publish:pkg && npm run publish:rename",
"publish:pkg": "pkg --config pkg.json --public dist/index.cjs",
"publish:rename": "node -e \"require('fs').renameSync('artifacts/index.exe', 'artifacts/kbd.exe')\"",
"preview": "vite preview",
"test:unit": "vitest",
"type-check": "vue-tsc --build --force"
},
"pkg": {
"assets": [
"dist/.env",
"dist/frontend/**/*"
],
"targets": [
"latest-win"
],
"outputPath": "artifacts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@tanstack/vue-query": "^5.28.9",
"@tanstack/vue-query-devtools": "^5.29.0",
"aes-js": "^3.1.2",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"file-saver": "^2.0.5",
"http-proxy-middleware": "^3.0.0",
"jszip": "^3.10.1",
"luxon": "^3.4.4",
"multer": "^1.4.5-lts.1",
"pinia": "^2.1.7",
"sha.js": "^2.4.11",
"vhost": "^3.0.2",
"vue": "^3.4.21"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/node20": "^20.1.2",
"@types/aes-js": "^3.1.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/file-saver": "^2.0.7",
"@types/http-proxy": "^1.17.14",
"@types/jsdom": "^21.1.6",
"@types/luxon": "^3.4.2",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.28",
"@types/sha.js": "^2.4.4",
"@types/vhost": "^3.0.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/test-utils": "^2.4.5",
"@vue/tsconfig": "^0.5.1",
"concurrently": "^8.2.2",
"dotenv-expand": "^11.0.6",
"jsdom": "^24.0.0",
"make-dir": "^4.0.0",
"pkg": "^5.8.1",
"rimraf": "^5.0.5",
"rollup": "^4.14.1",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.74.1",
"typescript": "~5.4.0",
"vite": "^5.1.6",
"vite-node": "^1.4.0",
"vitest": "^1.4.0",
"vue-tsc": "^2.0.6"
}
}