-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.54 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
{
"name": "jasper-app",
"productName": "Jasper",
"version": "1.0.66",
"description": "Desktop app for Jasper KM",
"repository": "cjmalloy/jasper-app",
"author": {
"name": "Chris Malloy",
"email": "cjmalloy@gmail.com"
},
"main": "app.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"tsc": "tsc -p tsconfig.json",
"start": "npm run tsc && electron app.js",
"build": "npm run tsc && electron-builder build",
"ci": "npm run tsc && electron-builder build --publish never"
},
"build": {
"asar": false,
"publish": [
{
"provider": "github",
"owner": "cjmalloy",
"repo": "jasper-app"
}
],
"directories": {
"output": "release/"
},
"files": [
"**/*",
"!**/*.ts",
"!*.map",
"!package.json",
"!package-lock.json"
],
"mac": {
"category": "public.app-category.productivity",
"target": {
"target": "dmg",
"arch": [
"x64"
]
}
},
"linux": {
"category": "Office",
"target": [
"AppImage"
]
}
},
"license": "MIT",
"devDependencies": {
"electron": "^35.0.1",
"electron-builder": "^25.1.8",
"electron-debug": "^4.1.0",
"electron-reloader": "^1.2.3",
"typescript": "~5.8.2",
"wait-on": "^8.0.3"
},
"dependencies": {
"ansi_up": "^5.2.1",
"axios": "^1.8.3",
"electron-context-menu": "^3.6.1",
"electron-log": "^5.3.2",
"electron-updater": "^6.3.9",
"jquery": "^3.7.1"
}
}