-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 762 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 762 Bytes
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
{
"name": "agentlink",
"version": "0.1.0",
"private": true,
"description": "AgentLink monorepo — secure local-first agent network platform",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"coverage": "turbo run coverage",
"release:gate": "node scripts/release-gate.js",
"validate": "node scripts/release-gate.js",
"clean": "turbo run clean && rimraf node_modules",
"install:all": "pnpm install"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"rimraf": "^6.0.1"
},
"packageManager": "pnpm@9.15.0"
}