forked from nekiro/Nekiro-Rcc-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "nekirosrcceditor",
"version": "1.0.0",
"description": "edit qt .rcc files",
"main": "build/App.js",
"scripts": {
"start": "npm run compile && electron-forge start",
"build": "npm run compile && electron-forge make",
"compile": "tsc && copyfiles src/html/*.html src/css/*.css src/assets/* src/rcc/rcc.exe build",
"package": "electron-forge package"
},
"author": "Nekiro",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.63",
"@electron-forge/maker-squirrel": "^6.0.0-beta.63",
"@tsconfig/recommended": "^1.0.1",
"@types/electron": "^1.6.10",
"@types/fs-extra": "^9.0.13",
"electron": "^13.0.1",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^10.0.0"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "./build/src/assets/icon.ico",
"extraResource": "./build/src/rcc",
"asar": true
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "NekirosRccEditor"
}
}
]
}
}
}