-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.34 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.34 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
{
"name": "agentnative",
"private": true,
"type": "module",
"scripts": {
"postinstall": "pnpm --filter @agent-native/core build",
"setup": "pnpm install && pnpm --filter @agent-native/core 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/docs test",
"lint": "pnpm fmt:check && pnpm typecheck",
"prep": "concurrently -n fmt,types,test -c blue,cyan,green \"pnpm fmt\" \"pnpm typecheck\" \"pnpm test\"",
"dev:all": "pnpm --filter @agent-native/core build && node scripts/dev-all.ts",
"dev:all:single-port": "pnpm --filter @agent-native/core build && node scripts/dev-all-single-port.ts",
"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": {
"concurrently": "^9.1.0",
"prettier": "^3.6.2"
},
"pnpm": {
"overrides": {
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7"
},
"onlyBuiltDependencies": [
"node-pty",
"esbuild",
"lightningcss"
]
}
}