-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "af-stack",
"version": "0.0.1",
"private": true,
"description": "The open-source AI app template with the backend already wired.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Agent-Field/backai.git"
},
"homepage": "https://github.com/Agent-Field/backai",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"generate:brand": "node scripts/generate-brand.mjs",
"preflight": "node scripts/preflight.mjs",
"dev": "pnpm -r --parallel run dev",
"build": "pnpm run generate:brand && pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\""
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.2.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"hono": "4.12.34",
"@hono/node-server": "1.19.15",
"prismjs": ">=1.30.0",
"qs": ">=6.16.0",
"body-parser": ">=2.3.0",
"postcss-selector-parser": ">=7.1.3",
"next": "16.3.4",
"brace-expansion@>=3": ">=5.0.9",
"js-yaml@>=4 <4.3.1": "4.3.2",
"fast-uri@>=3 <3.1.5": ">=3.1.5",
"undici@>=7 <7.29.0": ">=7.29.0",
"ip-address@<=10.3.0": ">=10.3.1",
"nanoid@<3.3.18": "3.3.18",
"postcss@<=8.5.22": ">=8.5.26",
"browserslist@<=4.28.6": ">=4.28.8",
"better-auth": "1.6.29"
}
}
}