This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
generated from arrow2nd/electron-ts-react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.65 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
{
"name": "tokumei-player-pp",
"description": "オモコロのWebラジオを再生する非公式のソフトウェア",
"author": {
"name": "arrow2nd",
"email": "[email protected]"
},
"version": "1.8.7",
"main": "./build/main.js",
"private": true,
"scripts": {
"start": "run-s clean build serve",
"start:dev": "run-s clean build:dev serve",
"clean": "rimraf ./build",
"clean:dist": "rimraf \"./dist/!(*.exe|*.deb|*.AppImage|*.dmg)\"",
"build": "cross-env NODE_ENV=\"production\" webpack",
"build:dev": "cross-env NODE_ENV=\"development\" webpack",
"serve": "electron .",
"pack:win": "electron-builder --win --x64",
"pack:mac": "electron-builder --mac --x64",
"pack:linux": "electron-builder --linux",
"fmt": "prettier --write ."
},
"build": {
"appId": "com.arrow2nd.tokumeipp",
"productName": "匿名Player++",
"artifactName": "${name}-${version}.${ext}",
"files": [
"./build/**/*"
],
"directories": {
"output": "./dist"
},
"win": {
"target": "nsis",
"icon": "./src/icons/win.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"mac": {
"target": "dmg",
"icon": "./src/icons/mac.png",
"category": "Entertainment"
},
"linux": {
"target": "AppImage",
"icon": "./src/icons/linux.png",
"category": "Audio"
},
"publish": null
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"electron": "20.3.3",
"electron-builder": "^23.6.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.1",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@fontsource/m-plus-rounded-1c": "^4.5.10",
"axios": "^1.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0"
},
"packageManager": "[email protected]"
}