-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "texture-ripper",
"version": "1.6.0",
"description": "A tool to extract and manage textures",
"author": "Maksim Jovovic - Raycastly",
"main": "main.js",
"scripts": {
"build:win": "electron-builder --win --x64",
"semantic-release": "semantic-release"
},
"build": {
"appId": "com.raycastly.textureripper",
"productName": "Texture Ripper",
"directories": {
"buildResources": "assets",
"output": "dist"
},
"publish": {
"provider": "github",
"owner": "raycastly",
"repo": "texture-ripper",
"releaseType": "release"
},
"win": {
"icon": "assets/icon.ico",
"artifactName": "Texture-Ripper-${version}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/installer.ico",
"artifactName": "Texture-Ripper-Setup-${version}.${ext}"
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.5",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"electron": "^38.0.0",
"electron-builder": "^26.0.12",
"semantic-release": "^24.2.7"
},
"dependencies": {
"electron-updater": "^6.6.2"
}
}