-
Notifications
You must be signed in to change notification settings - Fork 333
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 7.04 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 7.04 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "agentnative",
"version": "1.0.0",
"private": true,
"description": "Don't choose between rich user interfaces and autonomous agents. Every Agent-Native app is both.",
"keywords": [],
"homepage": "https://github.com/BuilderIO/agent-native#readme",
"bugs": {
"url": "https://github.com/BuilderIO/agent-native/issues"
},
"license": "ISC",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/BuilderIO/agent-native.git"
},
"directories": {
"doc": "docs"
},
"type": "module",
"main": "index.js",
"scripts": {
"postinstall": "node scripts/prebuild-workspace-packages.ts postinstall && pnpm rebuild better-sqlite3",
"setup": "pnpm install",
"build": "pnpm -r build",
"dev": "node scripts/dev-lazy.ts",
"typecheck": "tsx scripts/workspace-run.ts typecheck",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"fix:imports": "oxfmt --write .",
"test": "tsx scripts/workspace-run.ts test",
"test:fast": "tsx scripts/workspace-run.ts test -- --exclude \"**/*.db.test.ts\" --exclude \"**/*.integration.spec.ts\" --exclude \"**/*.integration.test.ts\" --exclude \"**/*.e2e.spec.ts\" --exclude \"**/*.e2e.test.ts\"",
"test:content-db": "pnpm --filter content exec vitest --run actions/bind-content-database-source-field.db.test.ts actions/blocks-seeding.db.test.ts actions/builder-source-review-gates.db.test.ts actions/content-database-lifecycle.db.test.ts actions/database-row-batch-actions.db.test.ts actions/list-content-databases.db.test.ts actions/resync-content-database-source.db.test.ts --config vitest.config.ts",
"test:core-integration": "pnpm --filter @agent-native/core exec vitest --run src/agent/engine/translate-ai-sdk.integration.spec.ts src/agent/run-loop-with-resume.integration.spec.ts src/client/extensions/AgentNativeExtensionFrame.e2e.spec.ts src/scripts/db/migrate-encrypt-credentials.e2e.spec.ts src/scripts/db/scope-isolation.e2e.spec.ts src/server/embedded.integration.spec.ts --maxWorkers=25% --passWithNoTests",
"test:plan-e2e": "pnpm --filter plan exec vitest --run actions/create-visual-recap.e2e.spec.ts --passWithNoTests",
"test:brain-evals": "pnpm --filter brain eval:ci",
"test:content-parity": "pnpm --filter content test:parity-capabilities",
"qa:cli": "tsx scripts/qa-cli-smoke.ts",
"qa:headless-onramp": "tsx scripts/qa-headless-onramp-smoke.ts",
"qa:standalone-chat-dev": "tsx scripts/qa-standalone-chat-dev-smoke.ts",
"qa:composer-geometry": "tsx scripts/qa-composer-geometry-smoke.ts",
"qa:dispatch-workspace-resources": "tsx scripts/qa-dispatch-workspace-resources-smoke.ts",
"qa:dispatch-automations": "tsx scripts/qa-dispatch-automations-smoke.ts",
"qa:template-routes": "tsx scripts/qa-template-route-matrix.ts",
"actions:audit": "node scripts/audit-template-actions.mjs",
"test:mcp:e2e": "tsx scripts/e2e-mcp-test.ts",
"lint": "pnpm fmt:check && pnpm oxlint && pnpm typecheck",
"oxlint": "oxlint --config .oxlintrc.json .",
"dev:cli": "tsx packages/core/src/cli/index.ts",
"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:google-auth-redirects": "node scripts/guard-google-auth-redirects.mjs",
"guard:db-tool-scoping": "node scripts/guard-db-tool-scoping.mjs",
"guard:template-list": "node scripts/guard-template-list.mjs",
"guard:netlify-private-env": "tsx scripts/guard-netlify-private-env.ts",
"guard:workspace-skills": "tsx scripts/sync-workspace-core-skills.ts --check",
"guard:public-packages": "tsx scripts/guard-public-packages.ts",
"guard:no-generated-artifacts": "node scripts/guard-no-generated-artifacts.mjs",
"guard:extension-no-public": "node scripts/guard-extension-no-public.mjs",
"guard:no-one-off-mcp-app-html": "node scripts/guard-no-one-off-mcp-app-html.mjs",
"guard:i18n-catalogs": "tsx scripts/guard-i18n-catalogs.ts",
"guard:plan-marketplace": "tsx scripts/sync-plan-marketplace.ts --check",
"guard:plan-skills": "tsx scripts/sync-plan-skills.ts --check",
"guard:no-error-string-returns": "node scripts/guard-no-error-string-returns.mjs",
"guard:no-action-twin-routes": "node scripts/guard-no-action-twin-routes.mjs",
"guards": "tsx scripts/run-guards.ts",
"sync:netlify-env": "tsx scripts/sync-template-netlify-env.ts",
"sync:workspace-skills": "tsx scripts/sync-workspace-core-skills.ts",
"sync:plan-marketplace": "tsx scripts/sync-plan-marketplace.ts",
"sync:plan-skills": "tsx scripts/sync-plan-skills.ts",
"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": "pnpm fmt && concurrently -n types,test,guard -c cyan,green,yellow \"pnpm typecheck\" \"pnpm test:fast\" \"pnpm guards\"",
"dev:lazy": "node scripts/dev-lazy.ts",
"dev:desktop": "node scripts/dev-lazy.ts --desktop --electron",
"dev:lazy:desktop": "node scripts/dev-lazy.ts --desktop --electron",
"dev:eager": "node scripts/dev-all.ts",
"dev:eager:desktop": "node scripts/dev-all.ts --desktop",
"dev:all": "node scripts/dev-all.ts",
"dev:all:desktop": "node scripts/dev-all.ts --desktop",
"dev:docs": "pnpm --filter @agent-native/docs dev",
"dev:content:database": "pnpm --dir templates/content dev:database",
"content:seed-demo": "pnpm --dir templates/content seed:demo",
"dev:electron": "node scripts/dev-electron.ts",
"dev:electron:lazy": "node scripts/dev-lazy.ts --electron",
"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",
"@playwright/test": "^1.61.1",
"@typescript/native-preview": "7.0.0-dev.20260624.1",
"concurrently": "^9.1.0",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"oxlint-tsgolint": "0.23.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"wrangler": "^4.80.0"
},
"engines": {
"node": ">=22.22.0"
},
"packageManager": "pnpm@10.29.1",
"pnpm": {
"overrides": {
"react": "19.2.7",
"react-dom": "19.2.7",
"@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.28.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",
"kysely": "^0.28.9"
}
}
}