-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.09 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
{
"name": "demoshot",
"version": "1.5.0",
"description": "Record a captioned demo video of any web app with one command — then grow into autonomous CWS/X/YouTube launch assets with final-file QA and a human approval gate.",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./schemas/*": "./schemas/*"
},
"bin": {
"demoshot": "bin/shotkit.js",
"shotkit": "bin/shotkit.js"
},
"files": [
"src",
"bin",
"calibrator",
"campaign",
"skills/capture",
"skills/demo",
"docs/handoff-conventions.md",
"schemas"
],
"scripts": {
"lint": "eslint src/ bin/ calibrator/ campaign/ scripts/ test/",
"research": "node scripts/research-to-product-fit.mjs",
"test": "npm run test:campaign && jest --verbose --coverage",
"test:campaign": "node --test test/campaign-ui.node.mjs",
"pack:check": "node scripts/verify-pack.mjs",
"install:browser": "playwright install chromium"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starter-series/shotkit.git"
},
"keywords": [
"screen-recording",
"proof",
"coding-agent",
"agent-skill",
"claude-code",
"codex",
"playwright",
"screenshot",
"chrome-web-store",
"browser-extension",
"promo",
"og-image",
"store-assets",
"demo-video",
"launch-assets",
"agent-ready",
"json-schema",
"product-evidence",
"publish-ready",
"video-automation",
"storyboard",
"handoff"
],
"author": "heznpc",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"fontkit": "^2.0.4",
"playwright": "^1.60.0",
"pngjs": "^7.0.0",
"subset-font": "^2.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"globals": "^17.5.0",
"jest": "^30.3.0"
},
"jest": {
"collectCoverageFrom": [
"src/channels.js",
"src/approval.js",
"src/calibration.js",
"src/calibrator-server.js",
"src/calibrator-http.js",
"src/calibrator-routes.js",
"src/calibrator-state.js",
"src/campaign.js",
"src/campaign-dashboard.js",
"src/calibration-verification.js",
"src/presets.js",
"src/describe.js",
"src/extension.js",
"src/serve.js",
"src/cli.js",
"src/cli-runner.js",
"src/index.js",
"src/capture.js",
"src/capture-demo.js",
"src/capture-lifecycle.js",
"src/capture-plan.js",
"src/capture-static.js",
"src/video.js",
"src/demo.js",
"src/caption-language.js",
"src/caption-typography.js",
"src/demo-caption-focus.js",
"src/demo-caption-qa.js",
"src/demo-select.js",
"src/demo-time.js",
"src/demo-storyboard.js",
"src/handoff.js",
"src/handoff-files.js",
"src/handoff-validator.js",
"src/image-qa.js",
"src/integrations.js",
"src/publish.js",
"src/review-request.js"
],
"coverageReporters": [
"text",
"text-summary"
]
},
"overrides": {
"brace-expansion": "5.0.8"
}
}