-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 827 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 827 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
31
32
33
34
{
"name": "html-video-monorepo",
"version": "0.0.0",
"private": true,
"description": "HTML→Video meta-layer for coding agents",
"license": "Apache-2.0",
"homepage": "https://github.com/nexu-io/html-video",
"repository": {
"type": "git",
"url": "git+https://github.com/nexu-io/html-video.git"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.0",
"workspaces": [
"packages/*",
"templates/*"
],
"scripts": {
"build": "pnpm -r build",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"smoke": "pnpm --filter @html-video/cli smoke",
"format": "biome format --write .",
"lint": "biome lint ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
}
}