-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 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
{
"name": "evo",
"version": "0.1.0",
"description": "Evo - An interactive neural evolution sandbox where AI agents learn and adapt in real-time.",
"main": "./out/main/index.js",
"author": "Bryant Ejorh (https://github.com/CodeByBryant)",
"homepage": "https://codebybryant.github.io/Evo/",
"repository": {
"type": "git",
"url": "https://github.com/CodeByBryant/Evo.git"
},
"bugs": {
"url": "https://github.com/CodeByBryant/Evo/issues"
},
"license": "MIT",
"keywords": [
"evolution",
"neural-network",
"genetic-algorithm",
"simulation",
"artificial-intelligence",
"machine-learning",
"electron",
"react",
"typescript",
"evolutionary-computing",
"natural-selection",
"agent-based-simulation"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"dev:web": "vite",
"build:web": "vite build",
"preview:web": "vite preview",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"electron-updater": "^6.7.3",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@types/node": "^22.10.6",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"electron-vite": "^5.0.0",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"vite": "^6.1.7"
}
}