返回 html-video
package.json
根目录 / packages / runtime / package.json
1 {
2 "name": "@html-video/runtime",
3 "version": "0.1.0",
4 "description": "Local coding agent runtime adapter (forked-from-OD slim variant)",
5 "license": "Apache-2.0",
6 "type": "module",
7 "main": "./dist/index.js",
8 "types": "./dist/index.d.ts",
9 "exports": {
10 ".": {
11 "import": "./dist/index.js",
12 "types": "./dist/index.d.ts"
13 }
14 },
15 "files": [
16 "dist",
17 "README.md"
18 ],
19 "scripts": {
20 "build": "tsc -p tsconfig.json",
21 "typecheck": "tsc -p tsconfig.json --noEmit",
22 "test": "npm run build && node --test --experimental-strip-types \"test/**/*.test.ts\" \"test/**/*.test.mjs\""
23 },
24 "devDependencies": {
25 "typescript": "^5.7.2"
26 },
27 "dependencies": {
28 "@powerformer/vela-cli": "^0.0.16"
29 }
30 }
31
31 lines JSON