-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.38 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
{
"name": "automatastudio",
"version": "2.7.4",
"description": "A web-based visualizer and simulator for finite state machines, pushdown automata, and Turing machines.",
"author": {
"name": "Shreyan C",
"email": "shreyan.chaubey@gmail.com"
},
"main": "electron/main.cjs",
"type": "module",
"devDependencies": {
"assemblyscript": "^0.28.20",
"concurrently": "^10.0.4",
"cross-env": "^10.1.0",
"electron": "^43.4.0",
"electron-builder": "^26.15.3",
"terser": "^5.50.0",
"vite": "^8.2.1",
"wait-on": "^9.1.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "node --conditions=browser --conditions=development --test",
"icons": "node scripts/build-icons.mjs",
"glyphs": "node scripts/build-glyphs.mjs",
"wasm": "node scripts/build-wasm.mjs",
"electron:dev": "concurrently -k -s first \"npm:dev\" \"wait-on http://localhost:5173 && cross-env ELECTRON_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"electron:preview": "npm run build && electron .",
"electron:build": "npm run build && electron-builder"
},
"build": {
"appId": "com.automataplayground.app",
"productName": "AutomataStudio",
"publish": [
{
"provider": "github",
"owner": "thethinkmachine",
"repo": "AutomataStudio"
}
],
"files": [
"electron/**/*",
"dist/**/*",
"package.json"
],
"directories": {
"output": "release",
"buildResources": "build"
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"artifactName": "AutomataStudio-Setup-${version}.${ext}"
},
"appImage": {
"artifactName": "AutomataStudio-${version}.${ext}"
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.education",
"publish": null
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Education"
},
"fileAssociations": [
{
"ext": "automaton",
"name": "AutomataStudio Machine",
"description": "AutomataStudio Machine",
"role": "Editor",
"rank": "Owner",
"mimeType": "application/x-automatastudio+json",
"icon": "build/icon.png"
}
]
},
"dependencies": {
"@solid-primitives/set": "^0.7.4",
"electron-updater": "^6.8.9",
"solid-js": "^1.9.15"
}
}