返回 html-video
package.json
根目录 / packages / cli / package.json
1 {
2 "name": "@html-video/cli",
3 "version": "0.1.0",
4 "description": "html-video command-line interface",
5 "license": "Apache-2.0",
6 "type": "module",
7 "bin": {
8 "html-video": "./dist/bin.js"
9 },
10 "main": "./dist/index.js",
11 "types": "./dist/index.d.ts",
12 "files": ["dist", "README.md"],
13 "scripts": {
14 "build": "tsc -p tsconfig.json && chmod +x dist/bin.js",
15 "typecheck": "tsc -p tsconfig.json --noEmit",
16 "smoke": "node dist/smoke.js",
17 "test": "npm run build && node --test --experimental-strip-types \"test/**/*.test.ts\""
18 },
19 "dependencies": {
20 "@html-video/content-graph": "workspace:*",
21 "@html-video/core": "workspace:*",
22 "@html-video/adapter-hyperframes": "workspace:*",
23 "@html-video/adapter-remotion": "workspace:*",
24 "@html-video/project-studio": "workspace:*",
25 "@html-video/runtime": "workspace:*",
26 "cac": "^6.7.14"
27 },
28 "devDependencies": {
29 "typescript": "^5.7.2"
30 }
31 }
32
32 lines JSON