-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "distance-calculator",
"version": "1.0.0",
"description": "calculates the distance between one point and a list of other points",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/C-N-G/distance-calculator.git"
},
"author": "Cormac Gudge",
"license": "ISC",
"bugs": {
"url": "https://github.com/C-N-G/distance-calculator/issues"
},
"homepage": "https://github.com/C-N-G/distance-calculator#readme",
"devDependencies": {
"@electron-forge/cli": "^6.3.0",
"@electron-forge/maker-deb": "^6.3.0",
"@electron-forge/maker-rpm": "^6.3.0",
"@electron-forge/maker-squirrel": "^6.3.0",
"@electron-forge/maker-zip": "^6.3.0",
"@electron-forge/plugin-auto-unpack-natives": "^6.3.0",
"electron": "^25.4.0",
"typescript": "^5.1.6"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"jquery": "^3.7.0"
}
}