-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "agent-friday",
"version": "1.34.0",
"private": true,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e --concurrency=1",
"test:playwright": "pnpm --filter @friday/dashboard run test:playwright",
"test:clean": "pnpm --filter @friday/shared run test:clean",
"dev": "turbo run dev",
"dev:daemon": "FRIDAY_DAEMON_PORT=7444 pnpm --filter @friday/daemon dev",
"dev:dashboard": "FRIDAY_DAEMON_PORT=7444 pnpm --filter @friday/dashboard dev",
"dev:zero": "pnpm --filter @friday/cli exec tsx src/bin/dev-zero.ts",
"check": "turbo run check",
"clean": "turbo run clean",
"drizzle:generate": "pnpm --filter @friday/shared run drizzle:generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky 2>/dev/null || true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"turbo": "^2.5.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"@rocicorp/zero-sqlite3",
"esbuild",
"sharp"
],
"overrides": {
"drizzle-orm": "0.45.2"
},
"peerDependencyRules": {
"allowAny": [
"drizzle-orm"
]
},
"patchedDependencies": {
"onnxruntime-node@1.24.3": "patches/onnxruntime-node@1.24.3.patch"
}
}
}