-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.12 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
{
"name": "augustus",
"version": "0.9.2",
"description": "Augustus - Persistent AI Identity Research Platform",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:electron\"",
"dev:backend": "bash scripts/restart-backend.sh",
"kill:backend": "python scripts/kill-port.py 8080",
"dev:frontend": "cd frontend && npm run dev",
"dev:electron": "cd electron && npm run dev",
"build": "npm run build:backend && npm run build:frontend && npm run build:electron",
"build:backend": "cd backend && python build_backend.py",
"build:frontend": "cd frontend && npm run build",
"build:electron": "cd electron && npx electron-builder",
"start": "cd electron && electron .",
"test": "cd backend && pytest -xvs",
"test:unit": "cd backend && pytest tests/unit/ -xvs",
"test:integration": "cd backend && pytest tests/integration/ -xvs"
},
"keywords": [
"ai",
"research",
"identity",
"claude",
"anthropic"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}