35 lines
840 B
JSON
35 lines
840 B
JSON
{
|
|
"name": "@html-video/core",
|
|
"version": "0.1.0",
|
|
"description": "html-video core: types, registry, asset store, storyboard orchestrator",
|
|
"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"
|
|
},
|
|
"./types": {
|
|
"import": "./dist/types/index.js",
|
|
"types": "./dist/types/index.d.ts"
|
|
}
|
|
},
|
|
"files": ["dist", "README.md"],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"test": "node --test test/"
|
|
},
|
|
"dependencies": {
|
|
"@html-video/content-graph": "workspace:*",
|
|
"ajv": "^8.17.1",
|
|
"ajv-formats": "^3.0.1",
|
|
"yaml": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|