-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "sprite-packer",
"productName": "Sprite Packer",
"version": "1.2.2",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir --win",
"dist": "electron-builder --win"
},
"keywords": [],
"author": "CommanderFoo",
"license": "ISC",
"description": "A sprite packing application that allows users to load images, arrange them into a texture atlas, and save the resulting atlas. Supports various atlas sizes, including non-square dimensions, and provides zoom and pan functionality for previewing the atlas.",
"devDependencies": {
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"electron-store": "^10.0.0",
"sharp": "^0.33.5"
},
"dependencies": {
"electron-store": "^10.0.0",
"sharp": "^0.33.5"
},
"build": {
"appId": "net.pixeldepth.spritepacker",
"mac": {
"icon": "assets/icons/macicon.icns"
},
"win": {
"icon": "assets/icons/winicon.ico"
},
"publish": [
{
"provider": "github",
"owner": "CommanderFoo",
"repo": "sprite-packer"
}
]
}
}