forked from BuilderIO/agent-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.96 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
{
"name": "agentnative",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/agent-native"
},
"bugs": {
"url": "https://github.com/BuilderIO/agent-native/issues"
},
"homepage": "https://github.com/BuilderIO/agent-native#readme",
"packageManager": "pnpm@10.29.1",
"scripts": {
"postinstall": "pnpm --filter @agent-native/core build && pnpm --filter @agent-native/migrate build && pnpm --filter @agent-native/pinpoint build && pnpm --filter @agent-native/scheduling build && pnpm --filter @agent-native/dispatch build",
"setup": "pnpm install && pnpm --filter @agent-native/core build && pnpm --filter @agent-native/migrate build && pnpm --filter @agent-native/scheduling build && pnpm install",
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"typecheck": "pnpm -r --reporter-hide-prefix typecheck",
"fmt": "prettier --write --log-level warn .",
"fmt:check": "prettier --check --log-level warn .",
"test": "pnpm --filter @agent-native/core test && pnpm --filter @agent-native/migrate test && pnpm --filter @agent-native/docs test && pnpm --filter dispatch test",
"qa:cli": "tsx scripts/qa-cli-smoke.ts",
"qa:template-routes": "tsx scripts/qa-template-route-matrix.ts",
"lint": "pnpm fmt:check && pnpm typecheck",
"guard:no-drizzle-push": "node scripts/guard-no-drizzle-push.mjs",
"guard:no-unscoped-queries": "node scripts/guard-no-unscoped-queries.mjs",
"guard:no-env-credentials": "node scripts/guard-no-env-credentials.mjs",
"guard:no-unscoped-credentials": "node scripts/guard-no-unscoped-credentials.mjs",
"guard:no-env-mutation": "node scripts/guard-no-env-mutation.mjs",
"guard:no-localhost-fallback": "node scripts/guard-no-localhost-fallback.mjs",
"guard:db-tool-scoping": "node scripts/guard-db-tool-scoping.mjs",
"guard:template-list": "node scripts/guard-template-list.mjs",
"guard:no-generated-artifacts": "node scripts/guard-no-generated-artifacts.mjs",
"guard:extension-no-public": "node scripts/guard-extension-no-public.mjs",
"guards": "pnpm guard:no-drizzle-push && pnpm guard:no-unscoped-queries && pnpm guard:no-env-credentials && pnpm guard:no-unscoped-credentials && pnpm guard:no-env-mutation && pnpm guard:no-localhost-fallback && pnpm guard:db-tool-scoping && pnpm guard:template-list && pnpm guard:no-generated-artifacts && pnpm guard:extension-no-public",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:status": "changeset status --since=origin/main",
"changeset:version": "changeset version",
"changeset:publish": "pnpm -r build && changeset publish",
"prep": "concurrently -n fmt,types,test,guard -c blue,cyan,green,yellow \"pnpm fmt\" \"pnpm typecheck\" \"pnpm test\" \"pnpm guards\"",
"dev:all": "node scripts/dev-all.ts",
"dev:all:desktop": "node scripts/dev-all.ts --desktop",
"dev:lazy": "node scripts/dev-lazy.ts",
"dev:lazy:desktop": "node scripts/dev-lazy.ts --desktop",
"dev:docs": "pnpm --filter @agent-native/docs dev",
"dev:electron": "node scripts/dev-electron.ts",
"dev:electron:apps": "node scripts/dev-electron.ts --apps"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@cloudflare/vite-plugin": "^1.31.0",
"@libsql/linux-x64-gnu": "^0.5.29",
"concurrently": "^9.1.0",
"prettier": "^3.6.2",
"wrangler": "^4.80.0"
},
"pnpm": {
"overrides": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"rollup": ">=4.59.0",
"multer": ">=2.1.1",
"minimatch": ">=9.0.7",
"undici": ">=7.24.0",
"lodash": ">=4.18.0",
"@remix-run/router": ">=1.23.2",
"node-forge": ">=1.4.0",
"path-to-regexp": ">=8.4.0",
"picomatch": ">=4.0.4",
"fast-xml-parser": ">=5.5.6",
"glob": ">=10.5.0",
"@anthropic-ai/sdk": ">=0.90.0",
"hono": ">=4.12.4"
}
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"yjs": "^13.6.30"
}
}