-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.84 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.84 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
{
"name": "loopwind",
"version": "0.26.0",
"description": "A CLI tool for generating images and videos from JSX templates using Tailwind CSS.",
"type": "module",
"exports": {
".": "./dist/cli.js",
"./sdk": "./dist/sdk/index.js"
},
"bin": {
"loopwind": "./dist/cli.js",
"lw": "./dist/cli.js"
},
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -r src/default-templates dist/ && cp -r src/assets dist/",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"deploy": "wrangler deploy",
"preview": "wrangler dev"
},
"keywords": [
"design",
"cli",
"templates",
"satori",
"tailwind",
"image-generation",
"og-image",
"social-media",
"marketing",
"jsx",
"react",
"video-generation",
"cloudflare-workers"
],
"author": "Tommy Vedvik",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tomtev/loopwind.git"
},
"homepage": "https://loopwind.dev",
"bugs": {
"url": "https://github.com/tomtev/loopwind/issues"
},
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"esbuild": "^0.27.0",
"fast-png": "^8.0.0",
"gifenc": "^1.0.3",
"gradient-string": "^3.0.0",
"h264-mp4-encoder": "^1.0.12",
"loopwind": "^0.25.7",
"open": "^10.0.0",
"ora": "^8.0.1",
"pdf-lib": "^1.17.1",
"pptxgenjs": "^4.0.1",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"satori": "^0.18.3",
"sharp": "^0.34.5",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.11.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.2.48",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"wrangler": "^4.77.0"
},
"engines": {
"node": ">=18.0.0"
}
}