Files
2026-07-13 12:30:22 +08:00

31 lines
745 B
JSON

{
"name": "@html-video/runtime",
"version": "0.1.0",
"description": "Local coding agent runtime adapter (forked-from-OD slim variant)",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test --experimental-strip-types \"test/**/*.test.ts\" \"test/**/*.test.mjs\""
},
"devDependencies": {
"typescript": "^5.7.2"
},
"dependencies": {
"@powerformer/vela-cli": "^0.0.16"
}
}