32 lines
942 B
JSON
32 lines
942 B
JSON
{
|
|
"name": "@html-video/cli",
|
|
"version": "0.1.0",
|
|
"description": "html-video command-line interface",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"html-video": "./dist/bin.js"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist", "README.md"],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json && chmod +x dist/bin.js",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"smoke": "node dist/smoke.js",
|
|
"test": "npm run build && node --test --experimental-strip-types \"test/**/*.test.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@html-video/content-graph": "workspace:*",
|
|
"@html-video/core": "workspace:*",
|
|
"@html-video/adapter-hyperframes": "workspace:*",
|
|
"@html-video/adapter-remotion": "workspace:*",
|
|
"@html-video/project-studio": "workspace:*",
|
|
"@html-video/runtime": "workspace:*",
|
|
"cac": "^6.7.14"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|