-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.96 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"bin": {
"playback": "dist/cli.js"
},
"dependencies": {
"consola": "^3.4.2",
"valibot": "^1.3.1",
"yaml": "^2.8.3"
},
"description": "Turns YAML scripts into narrated, captioned terminal videos — then lets you fine-tune the timing in a post-production editor.",
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.28.6",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/format": "^20.5.0",
"@commitlint/prompt": "^20.5.0",
"@commitlint/prompt-cli": "^20.5.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"cspell": "^10.0.0",
"eslint": "^10.2.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-perfectionist": "^5.8.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"markdownlint-cli": "^0.48.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22"
},
"exports": {
".": "./dist/cli.js",
"./config": "./dist/config.js"
},
"files": [
"dist",
"templates",
"voices.example.yaml",
"workspace.example.yaml"
],
"name": "playback-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/philsherry/playback.git"
},
"scripts": {
"build": "tsup && npm run build:tui",
"build:tui": "cd tui && go build -o playback-tui ./cmd/playback-tui",
"clean": "rimraf tui/playback-tui",
"commit": "commit",
"dev": "tsx src/cli.ts",
"format": "run-s format:ts format:tui",
"format:ts": "prettier --write .",
"format:tui": "cd tui && golangci-lint run --fix ./...",
"lint": "run-s lint:ts lint:tui lint:md lint:yaml",
"lint:md": "markdownlint --config .markdownlint.yaml '**/*.md' --ignore node_modules --ignore workspace",
"lint:staged": "npx lint-staged",
"lint:ts": "eslint src",
"lint:tui": "cd tui && golangci-lint run ./...",
"lint:yaml": "yamllint --config-file .yamllint.yaml .",
"playback:demo": "cd tui && go run ./cmd/playback-tui studio/example/tape",
"playback:edit": "cd tui && go run ./cmd/playback-tui",
"playback:edit:accessible": "cd tui && go run ./cmd/playback-tui --accessible",
"playback:edit:hc": "cd tui && go run ./cmd/playback-tui --high-contrast",
"playback:edit:report": "cd tui && go run ./cmd/playback-tui --report",
"playback:release:timings": "tsx scripts/debug/timings.ts studio/demo/release",
"playback:release:timings:fix": "tsx scripts/debug/timings.ts studio/demo/release --fix",
"playback:studio:build": "bash studio/build-studio.sh",
"playback:studio:build:debug": "bash studio/build-studio.sh debug",
"playback:studio:timings": "tsx scripts/debug/timings.ts studio/demo/tui",
"playback:studio:timings:accessible": "tsx scripts/debug/timings.ts studio/demo/accessible",
"playback:studio:timings:accessible:fix": "tsx scripts/debug/timings.ts studio/demo/accessible --fix",
"playback:studio:timings:fix": "tsx scripts/debug/timings.ts studio/demo/tui --fix",
"playback:tape": "tsx src/cli.ts tape",
"playlist:build": "tsx src/cli.ts playlist",
"playlist:build:mkv": "tsx src/cli.ts playlist --mkv",
"playlist:build:web": "tsx src/cli.ts playlist --web",
"playlist:build:web:mkv": "tsx src/cli.ts playlist --web --mkv",
"postsetup": "npm run build",
"prepare": "husky || true",
"prepublishOnly": "tsup",
"release:check": "node scripts/release/check.cjs",
"release:notes": "node scripts/release/notes-from-changelog.cjs",
"release:prepare": "run-s lint test:ts test:tui typecheck test:smoke release:check",
"setup": "bash scripts/setup.sh",
"test": "run-s test:ts test:tui",
"test:smoke": "node dist/cli.js validate studio/example/skills",
"test:ts": "vitest run",
"test:tui": "cd tui && go test ./...",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"validate": "tsx src/cli.ts validate"
},
"type": "module",
"version": "1.5.0"
}