forked from stuffmatic/fSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
194 lines (194 loc) · 5.21 KB
/
Copy pathpackage.json
File metadata and controls
194 lines (194 loc) · 5.21 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "fspy-reframe",
"version": "0.8.2",
"packageManager": "npm@10.9.2",
"main": "build/main.js",
"homepage": "https://github.com/EnneiteG/fSpy-Reframe",
"repository": {
"type": "git",
"url": "https://github.com/EnneiteG/fSpy-Reframe.git"
},
"author": {
"name": "Per Gantelius",
"email": "per@stuffmatic.com",
"url": "https://stuffmatic.com"
},
"description": "An open source, cross platform app for still image camera matching",
"license": "GPL-3.0",
"engines": {
"node": ">=22.14 <25"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-measure": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"electron": "^42.0.1",
"electron-builder": "^26.8.1",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"html-webpack-plugin": "^5.6.7",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"scripts": {
"prebuild-dev": "rimraf build",
"build-dev": "webpack --config webpack.config.js --mode development",
"prebuild-dist": "rimraf build",
"build-dist": "webpack --config webpack.config.js --mode production",
"predist": "npm run build-dist",
"predist-preview": "npm run build-dist",
"predist-win": "rimraf dist && npm run build-dist",
"predist-linux": "rimraf dist && npm run build-dist",
"predist-mac": "rimraf dist && npm run build-dist",
"dist-preview": "electron-builder --dir",
"dist-win": "electron-builder --win --x64 --publish never",
"dist-linux": "electron-builder --linux AppImage deb rpm --x64 --publish never",
"dist-mac": "electron-builder --mac --x64 --arm64 --publish never",
"smoke:packaged": "node scripts/smoke-packaged-app.js",
"start": "npm run build-dev && npm run electron-dev",
"dev-server": "webpack serve --config webpack.config.js --mode development",
"electron-dev": "cross-env DEV=true node scripts/run-electron.js .",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.ts\"",
"dist": "electron-builder -mwl",
"test": "jest",
"test:unit": "jest tests/main/main_tests.ts",
"test:export-project": "jest tests/gui/gui_tests.ts tests/gui/project_file_tests.ts tests/gui/io/project-file.tests.ts",
"verify": "npm run lint && npm run build-dev && npm test",
"prepublish-release": "npm run build-dist",
"publish-release": "electron-builder -mwl --publish always"
},
"dependencies": {
"electron-window-state": "^5.0.3",
"konva": "^10.3.0",
"minimist": "^1.2.8",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-konva": "^19.2.4",
"react-measure": "^2.5.2",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
},
"build": {
"publish": {
"provider": "github",
"owner": "EnneiteG",
"repo": "fSpy-Reframe",
"publishAutoUpdate": false
},
"productName": "fSpy Reframe",
"appId": "com.enneiteg.fspyreframe",
"mac": {
"icon": "assets/build/icon.icns",
"artifactName": "fSpy-Reframe-${version}-mac-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities"
},
"linux": {
"artifactName": "fSpy-Reframe-${version}-linux-${arch}.${ext}",
"category": "Graphics",
"executableName": "fspy-reframe",
"icon": "assets/electron/icon.png",
"target": [
{
"target": "AppImage",
"arch": "x64"
},
{
"target": "deb",
"arch": "x64"
},
{
"target": "rpm",
"arch": "x64"
}
]
},
"win": {
"icon": "assets/build/icon.ico",
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "zip",
"arch": "x64"
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"selectPerMachineByDefault": false,
"allowElevation": true
},
"files": [
"build/**/*"
],
"extraResources": [
{
"from": "assets/electron",
"to": "",
"filter": [
"example.fspy"
]
},
{
"from": "assets/build",
"to": "",
"filter": [
"icon.ico"
]
},
{
"from": "assets/electron",
"to": "",
"filter": [
"icon.png"
]
},
{
"from": "assets/electron",
"to": "",
"filter": [
"icon.svg"
]
}
],
"directories": {
"buildResources": "assets/build"
},
"fileAssociations": [
{
"ext": "fspy",
"name": "fSpy project",
"description": "fSpy project file",
"role": "Editor"
}
]
}
}