-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.45 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
{
"name": "allen-desktop",
"version": "0.1.25",
"private": true,
"description": "An agentic operating system for software development — assign, coordinate, observe, and improve AI agents across real engineering workflows.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Inomy-shop/allen.git"
},
"bugs": {
"url": "https://github.com/Inomy-shop/allen/issues"
},
"homepage": "https://github.com/Inomy-shop/allen#readme",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"setup": "bash scripts/setup.sh",
"setup:context": "bash scripts/setup-context-engine.sh",
"health": "npm --workspace @allen/server run health --",
"start": "npm run dev:web",
"build": "npm --workspace @allen/engine run build && npm --workspace @allen/server run build && npm --workspace @allen/ui run build && npm --workspace @allen/desktop run build",
"lint": "npm --workspace @allen/engine run lint && npm --workspace @allen/server run lint && npm --workspace @allen/ui run lint && npm --workspace @allen/desktop run lint",
"test": "npm --workspace @allen/engine run test && npm --workspace @allen/server run test && npm --workspace @allen/ui run test && npm --workspace @allen/desktop run test",
"release:mac:local": "bash scripts/release-mac-local.sh",
"dev:web": "concurrently -k -n engine,server,ui -c blue,green,magenta \"npm --workspace @allen/engine run dev\" \"npm --workspace @allen/server run dev\" \"npm --workspace @allen/ui run dev -- --host 127.0.0.1\"",
"docs:dev": "npm --workspace @allen/docs-site run start",
"docs:build": "npm --workspace @allen/docs-site run build",
"docs:serve": "npm --workspace @allen/docs-site run serve",
"docs:export": "npm --workspace @allen/docs-site run export:askallen",
"test:e2e": "playwright install chromium && tsx scripts/e2e-preauth.ts && playwright test",
"test:e2e:ui": "playwright install chromium && tsx scripts/e2e-preauth.ts && playwright test --ui",
"test:e2e:headed": "playwright install chromium && tsx scripts/e2e-preauth.ts && playwright test --headed",
"test:e2e:dev": "tsx scripts/e2e-preauth.ts && E2E_REUSE_DEV_SERVER=1 playwright test",
"test:e2e:report": "playwright show-report"
},
"packageManager": "npm@10.0.0",
"workspaces": [
"packages/*"
],
"dependencies": {
"@allen/desktop": "*"
},
"main": "packages/desktop/dist/main.js",
"devDependencies": {
"concurrently": "^10.0.0"
}
}