-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (43 loc) · 875 Bytes
/
package.json
File metadata and controls
44 lines (43 loc) · 875 Bytes
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
{
"name": "auxa",
"version": "1.0.0",
"description": "AI Teaching Assistant and Grader for Canvas LMS",
"main": "main.js",
"scripts": {
"start": "electron .",
"backend": "cd backend && go run main.go",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:backend": "cd backend && go build -o auxa-server"
},
"keywords": [
"canvas",
"lms",
"grading",
"teaching-assistant",
"ai"
],
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^27.0.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.auxa.app",
"productName": "Auxa",
"mac": {
"category": "public.app-category.education",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
}
}
}