| 1 | { |
| 2 | "name": "@html-video/core", |
| 3 | "version": "0.1.0", |
| 4 | "description": "html-video core: types, registry, asset store, storyboard orchestrator", |
| 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 | "./types": { |
| 15 | "import": "./dist/types/index.js", |
| 16 | "types": "./dist/types/index.d.ts" |
| 17 | } |
| 18 | }, |
| 19 | "files": ["dist", "README.md"], |
| 20 | "scripts": { |
| 21 | "build": "tsc -p tsconfig.json", |
| 22 | "typecheck": "tsc -p tsconfig.json --noEmit", |
| 23 | "test": "node --test test/" |
| 24 | }, |
| 25 | "dependencies": { |
| 26 | "@html-video/content-graph": "workspace:*", |
| 27 | "ajv": "^8.17.1", |
| 28 | "ajv-formats": "^3.0.1", |
| 29 | "yaml": "^2.7.0" |
| 30 | }, |
| 31 | "devDependencies": { |
| 32 | "typescript": "^5.7.2" |
| 33 | } |
| 34 | } |
| 35 |