-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.75 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.75 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "demo-machine",
"version": "0.3.0",
"description": "Demo as code — automate polished product demo videos from YAML specs",
"type": "module",
"bin": {
"demo-machine": "./dist/cli.js",
"demo-machine-mcp": "./dist/mcp-server.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --max-warnings=0 --cache",
"format": "prettier --check --cache .",
"format:fix": "prettier --write --cache .",
"typecheck": "tsc --noEmit",
"spell": "cspell --no-progress \"src/**/*.ts\" \"tests/**/*.ts\" \"docs/**/*.md\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"knip": "knip",
"dep-check": "dependency-cruiser src --config",
"mutation": "stryker run",
"quality:verify": "node scripts/quality-verify.mjs",
"quality:verify:strict": "node scripts/quality-verify.mjs --strict-coverage",
"examples:validate": "node scripts/examples-suite.mjs --mode validate",
"examples:capture": "node scripts/examples-suite.mjs --mode capture",
"demo:gallery": "node scripts/demo-gallery.mjs",
"demo:health": "node scripts/demo-health-dashboard.mjs",
"golden-frames": "node scripts/golden-frames.mjs",
"golden-frames:compare": "node scripts/golden-frames.mjs --compare",
"golden-frames:update": "node scripts/golden-frames.mjs --update",
"visual-diff": "node scripts/visual-diff-gate.mjs",
"visual-diff:update": "node scripts/visual-diff-gate.mjs --update-baselines",
"prepublishOnly": "pnpm build && pnpm test",
"prepare": "husky",
"validate": "pnpm lint && pnpm format && pnpm spell && pnpm typecheck && pnpm test && pnpm knip && pnpm dep-check && pnpm quality:verify:strict"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^13.1.0",
"json5": "^2.2.3",
"kokoro-js": "^1.2.1",
"openai": "^6.22.0",
"playwright": "^1.58.2",
"tree-kill": "^1.2.2",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"peerDependencies": {
"pixelmatch": ">=5.0.0",
"pngjs": ">=6.0.0"
},
"peerDependenciesMeta": {
"pixelmatch": {
"optional": true
},
"pngjs": {
"optional": true
}
},
"devDependencies": {
"@stryker-mutator/core": "^8.7.1",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitest/coverage-v8": "^3.0.5",
"cspell": "^8.17.3",
"dependency-cruiser": "^16.9.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"knip": "^5.44.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --check",
"eslint --max-warnings=0 --cache"
],
"tests/**/*.{ts,tsx}": [
"prettier --check"
],
"*.{json,md,yaml,yml}": [
"prettier --check"
]
},
"repository": {
"type": "git",
"url": "https://github.com/45ck/demo-machine.git"
},
"homepage": "https://github.com/45ck/demo-machine",
"bugs": {
"url": "https://github.com/45ck/demo-machine/issues"
},
"license": "MIT",
"author": "45ck",
"keywords": [
"demo",
"video",
"automation",
"playwright",
"ffmpeg",
"product-demo",
"screen-recording",
"yaml",
"json5",
"toml",
"remotion",
"cli",
"demo-as-code"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"husky"
]
}
}