-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "patternfront",
"productName": "PatternFront",
"version": "0.2.2",
"description": "A 1-bit pattern editor for OpenFront territory patterns \u2014 desktop app for macOS and Windows.",
"keywords": [
"pixel-art",
"openfront",
"pattern-editor",
"1-bit",
"electron"
],
"homepage": "https://github.com/timbogdanov/patternfront#readme",
"bugs": "https://github.com/timbogdanov/patternfront/issues",
"repository": {
"type": "git",
"url": "https://github.com/timbogdanov/patternfront.git"
},
"license": "MIT",
"author": "timbogdanov",
"main": "electron/main.js",
"private": true,
"scripts": {
"start": "electron .",
"smoke": "electron . --smoke",
"verify": "./tools/verify-all.sh",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"icon": "python3 tools/gen-icon.py",
"stamps": "python3 tools/gen-stamps.py",
"fixtures": "python3 tools/gen-codec-fixtures.py",
"e2e": "node tests/e2e/drive.mjs"
},
"devDependencies": {
"electron": "^43.4.0",
"electron-builder": "^26.15.3",
"playwright-core": "^1.62.1"
}
}