-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "ogkit",
"version": "0.1.0",
"description": "Agent-friendly OG image compiler for TSX card definitions",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"bin": {
"ogkit": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"check": "tsc --noEmit",
"render:example": "node ./dist/cli.js card render-all --config ./examples/basic/og.config.tsx",
"dev:render:example": "tsx ./src/cli.ts card render-all --config ./examples/basic/og.config.tsx"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"bundle-require": "^5.1.0",
"commander": "^14.0.1",
"pngjs": "^7.0.0",
"react": "^19.2.0",
"satori": "^0.18.3",
"svgo": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.6.0",
"@types/pngjs": "^6.0.5",
"@types/react": "^19.2.2",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}