返回 html-video
package.json
1 {
2 "name": "@html-video/adapter-hyperframes",
3 "version": "0.1.0",
4 "description": "Hyperframes adapter for html-video meta-layer",
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": ["dist", "README.md"],
16 "scripts": {
17 "build": "tsc -p tsconfig.json",
18 "typecheck": "tsc -p tsconfig.json --noEmit",
19 "test": "node --test test/"
20 },
21 "dependencies": {
22 "@html-video/core": "workspace:*",
23 "playwright": "^1.49.0"
24 },
25 "peerDependencies": {
26 "hyperframes": "^0.4.0"
27 },
28 "peerDependenciesMeta": {
29 "hyperframes": {
30 "optional": true
31 }
32 },
33 "devDependencies": {
34 "typescript": "^5.7.2"
35 }
36 }
37
37 lines JSON