-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "j2hf",
"version": "1.0.4",
"description": "JSON2Hyperframes CLI — turn a JSON video config into HyperFrames HTML and MP4.",
"main": "dist/generate.js",
"types": "dist/lib/generate.d.ts",
"bin": {
"j2hf": "dist/j2hf.js"
},
"type": "module",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"templates",
"schemas",
"examples"
],
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly --declaration",
"test": "node validate.js",
"prepublishOnly": "npm run build && npm pack --dry-run"
},
"keywords": [
"hyperframes",
"video",
"cli",
"json",
"generator"
],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.20.0",
"node-json2html": "^3.3.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"tsup": "^8.5.1",
"tsx": "^4.23.12",
"typescript": "^7.0.2"
}
}