-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.69 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
{
"name": "douban-album-downloader",
"version": "2.4.0",
"private": true,
"main": "./out/main/main.js",
"scripts": {
"start": "electron-vite preview",
"prebuild": "electron-vite build",
"pack": "npm run prebuild && electron-builder --dir",
"dist": "npm run prebuild && electron-builder",
"dist-all": "npm run prebuild && electron-builder --win --mac --linux"
},
"build": {
"appId": "dev.jbgosselin.douban-album-downloader",
"files": [
"package.json",
"README.md",
"out/**/*"
],
"mac": {
"target": [{
"target": "default",
"arch": "universal"
}]
},
"win": {
"target": "portable"
},
"linux": {
"target": [{
"target": "AppImage",
"arch": ["x64", "arm64"]
}]
}
},
"repository": {
"type": "git",
"url": "[email protected]:jbgosselin/douban-album-downloader.git"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/jbgosselin/douban-album-downloader",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/bootstrap": "^5.2.10",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"bootstrap": "^5.3.3",
"electron": "^29.1.4",
"electron-builder": "^24.6.4",
"electron-vite": "^2.1.0",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.23.0",
"typescript": "^5.4.0",
"vite": "^5.1.6",
"vue": "^3.4.21",
"vue-tsc": "^2.0.6"
},
"dependencies": {
"electron-context-menu": "^3.6.1",
"electron-store": "^8.2.0"
}
}