-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "repo-canvas",
"version": "0.1.0",
"private": false,
"type": "module",
"license": "MIT",
"description": "Repo-aware static marketing asset generator for software products.",
"keywords": [
"marketing-assets",
"playwright",
"react",
"screenshots",
"social-cards",
"openai",
"gemini"
],
"engines": {
"node": ">=22"
},
"bin": {
"repo-canvas": "./dist/src/cli/index.js"
},
"files": [
"dist",
"README.md",
"HOWTO.md",
".env.example",
"integrations",
"scripts",
"tsconfig.json"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"prepack": "npm run clean && npm run build",
"start": "node dist/src/cli/index.js",
"asset:init": "node --import tsx/esm src/cli/index.ts init",
"asset:inspect": "node --import tsx/esm src/cli/index.ts inspect",
"asset:capture": "node --import tsx/esm src/cli/index.ts capture",
"asset:generate": "node --import tsx/esm src/cli/index.ts generate",
"asset:export": "node --import tsx/esm src/cli/index.ts export",
"asset:doctor": "node --import tsx/esm src/cli/index.ts doctor"
},
"dependencies": {
"commander": "^13.1.0",
"playwright": "^1.54.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}