-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.07 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.07 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "agentbridge-monorepo",
"version": "0.0.1",
"private": true,
"description": "Universal SDK for AI Coding Agent CLIs",
"author": "saaskit-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saaskit-dev/agentbridge.git"
},
"workspaces": [
"packages/core",
"apps/free/*"
],
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck --filter=@saaskit-dev/agentbridge --filter=@saaskit-dev/free",
"typecheck:all": "turbo run typecheck",
"dev": "turbo run dev",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:pre-push": "pnpm lint",
"check:deps:madge": "bash -lc 'env -u npm_config_package npx madge --circular --extensions ts,tsx apps/free/app/sources/ && env -u npm_config_package npx madge --circular --extensions ts,tsx apps/free/cli/src/ && env -u npm_config_package npx madge --circular --extensions ts,tsx packages/core/src/'",
"check:deps:layers": "node ./scripts/check-deps-layers.cjs",
"check:deps": "pnpm run check:deps:madge && pnpm run check:deps:layers",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"prepare": "node ./scripts/setup-git-hooks.cjs",
"clean": "turbo run clean && rm -rf node_modules",
"app": "pnpm --filter @free/app start",
"app:web": "pnpm --filter @free/app web",
"app:ios": "pnpm --filter @free/app ios",
"app:android": "pnpm --filter @free/app android",
"server": "pnpm --filter @free/server start",
"e2e": "./scripts/e2e-test.sh",
"e2e:quick": "./scripts/e2e-test.sh --quick",
"e2e:start": "./scripts/e2e-test.sh --no-test",
"e2e:cleanup": "./scripts/e2e-test.sh --cleanup"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.40.0",
"@types/jsdom": "^27.0.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^28.0.0",
"playwright": "^1.58.2",
"prettier": "^3.4.0",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"whatwg-url": "14.2.0",
"parse-path": "7.0.3",
"@types/parse-path": "7.0.3",
"axios": "^1.13.2",
"vitest": "^3.2.4",
"prismjs": ">=1.30.0",
"minimatch": ">=10.2.3",
"fast-xml-parser": ">=4.5.4",
"rollup": ">=4.59.0",
"esbuild": ">=0.25.0",
"basic-ftp": ">=5.2.0",
"hono": ">=4.12.2"
},
"onlyBuiltDependencies": [
"@more-tech/react-native-libsodium",
"esbuild",
"node-pty"
],
"patchedDependencies": {
"expo-task-manager@55.0.12": "patches/expo-task-manager@55.0.12.patch"
}
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=18.0.0"
}
}