-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 789 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
29
30
{
"name": "basemodel",
"version": "0.1.0",
"private": true,
"description": "Open-source AI Model Intelligence Platform",
"author": "BaseModel Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ngodingsendiri/BaseModel.git"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.9",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r run typecheck",
"generate": "pnpm --filter @basemodel/publisher run generate",
"clean": "pnpm -r run clean"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6"
}
}