-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.98 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.98 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
{
"name": "agentage-desktop",
"private": true,
"version": "2.1.47",
"type": "module",
"workspaces": [
"packages/*",
"agents/*",
"playground"
],
"scripts": {
"dev": "npm run dev -w @agentage/electron",
"dev:web": "AGENTAGE_CONFIG_DIR=$HOME/.agentage-web concurrently \"npm run dev -w @agentage/server\" \"npm run dev -w @agentage/frontend\"",
"build": "npm run build -w @agentage/shared && npm run build -w @agentage/agent-core && concurrently \"npm run build -w @agentage/agent-from-md\" \"npm run build -w @agentage/agent-runtime\" && npm run build -w @agentage/agent-registry && npm run build -w @agentage/agent-manager && concurrently \"npm run build -w @agentage/core\" \"npm run build -w @agentage/frontend\" && concurrently \"npm run build -w @agentage/server\" \"npm run build -w @agentage/electron\"",
"type-check": "npm run type-check --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "node scripts/test-e2e.js",
"test:e2e:perf": "PERF_LOG=1 node scripts/test-e2e.js",
"test:e2e:ui": "npx playwright test --ui",
"verify": "npm run type-check && npm run lint && npm run test && npm run build",
"clean": "rm -rf packages/*/dist node_modules",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-plugin-playwright": "^2.10.2",
"eslint-plugin-react-hooks": "7.1.0-canary-e0cc7202-20260227",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}