-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
100 lines (100 loc) · 2.95 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
95
96
97
98
99
100
{
"name": "petmate",
"version": "0.8.4",
"description": "Petmate - a C64 PETSCII graphics editor",
"private": false,
"author": "Janne Hellsten <[email protected]>",
"license": "MIT",
"homepage": "./",
"main": "public/electron.js",
"keywords": [
"Graphics"
],
"scripts": {
"build": "react-scripts build",
"start": "concurrently --kill-others \"cross-env BROWSER=none yarn react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"debug": "concurrently --kill-others \"cross-env BROWSER=none yarn react-scripts start\" \"wait-on http://localhost:3000 && electron --remote-debugging-port=9223 .\"",
"dist-macos": "npx electron-builder --x64 --arm64 --macos --c.extraMetadata.main=build/electron.js -p never",
"dist-win": "npx electron-builder --x64 --win --c.extraMetadata.main=build/electron.js -p never",
"dist-linux": "npx electron-builder --x64 --linux --c.extraMetadata.main=build/electron.js -p never"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-brands-svg-icons": "^5.5.0",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"c1541": "^0.1.0",
"c64jasm": "^0.8.1",
"classnames": "^2.2.6",
"electron-devtools-installer": "^3.1.1",
"fast-memoize": "^2.5.1",
"gif-encoder": "https://github.com/nurpax/gif-encoder#indexed-inputs",
"pngjs": "^3.3.3",
"react": "^16.8.1",
"react-dev-utils": "^6.1.1",
"react-dom": "^16.8.1",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"redux-undo": "1.0.0-beta9-9-7"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/pngjs": "^3.3.2",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.8.0",
"@types/react-redux": "^6.0.10",
"@types/resize-observer-browser": "^0.1.5",
"concurrently": "^3.6.0",
"cross-env": "^5.2.0",
"electron": "^12.0.2",
"electron-builder": "^22.10.5",
"react-scripts": "3.4.1",
"typescript": "^3.1.6",
"version-bump-prompt": "^4.2.1",
"wait-on": "^3.2.0"
},
"build": {
"appId": "com.nurpax.petmate",
"compression": "normal",
"productName": "Petmate",
"directories": {
"buildResources": "build",
"output": "dist"
},
"files": [
"assets/*"
],
"mac": {
"icon": "resources/icon.icns",
"type": "distribution",
"target": [
"dmg"
],
"category": "public.app-category.graphics"
},
"win": {
"target": "nsis",
"icon": "resources/icon.ico"
},
"linux": {
"icon": "resources/icons",
"target": [
"deb"
],
"description": "Petmate",
"category": "Graphics"
},
"fileAssociations": {
"ext": "petmate",
"description": "Petmate PETSCII graphics file"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}