-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 803 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
{
"name": "lina",
"private": true,
"license": "Apache-2.0",
"type": "module",
"description": "LINA — Lifelong Intelligent Networked Agent",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p packages/lina-web/client/tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"ci:validate": "bun scripts/ci/validate.ts",
"ci:build": "bun scripts/ci/build.ts",
"start": "bun packages/lina-runtime/scripts/start-codex.ts",
"web": "bun packages/lina-web/scripts/start.ts",
"lina": "bun packages/lina-runtime/scripts/lina.ts",
"install:local": "bun scripts/install.ts"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"bun-types": "latest",
"typescript": "^5.9.0"
}
}