-
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.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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": "agent-platform",
"version": "0.1.0",
"private": true,
"description": "AI Agent Platform - Monorepo",
"keywords": [
"ai",
"agent",
"llm",
"runtime",
"monorepo"
],
"author": "Agent Platform Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Phoenixrr2113/agent.git"
},
"bugs": {
"url": "https://github.com/Phoenixrr2113/agent/issues"
},
"homepage": "https://github.com/Phoenixrr2113/agent#readme",
"type": "module",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "eslint . --cache",
"test": "turbo run test",
"chat": "pnpm --filter @agent/cli chat",
"server": "pnpm --filter @agent/server dev",
"start": "turbo run dev --filter=@agent/server --filter=@agent/cli --parallel",
"expo": "pnpm --filter @agent/expo start",
"expo:web": "pnpm --filter @agent/expo web",
"expo:ios": "pnpm --filter @agent/expo ios",
"expo:android": "pnpm --filter @agent/expo android",
"test-agent": "tsx scripts/test-agent.ts",
"prepare": "husky",
"lint:fix": "eslint . --fix --cache",
"lint:strict": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint",
"check:fix": "npm run typecheck && npm run lint:fix",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^20.19.25",
"@types/ws": "^8.18.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.0.0",
"turbo": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0",
"vitest": "^2.0.0",
"ws": "^8.18.3"
}
}