-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
{
"name": "gum-jsx",
"version": "1.4.0",
"description": "Language for vector graphics generation.",
"type": "module",
"author": "Douglas Hanley",
"homepage": "https://github.com/CompendiumLabs/gum.jsx",
"repository": {
"type": "git",
"url": "git+https://github.com/CompendiumLabs/gum.jsx"
},
"license": "MIT",
"files": [
"src",
"src/lib",
"src/types",
"src/elems",
"src/fonts",
"docs",
"docs/text",
"docs/code",
"docs/gala",
"scripts",
"prompt",
"claude",
"claude/.claude-plugin",
"claude/skills/gum-jsx",
"claude/skills/gum-jsx/references"
],
"exports": {
".": "./src/gum.ts",
"./eval": "./src/eval.ts",
"./render": "./src/render.ts",
"./meta": "./src/meta.ts",
"./fonts/*": "./src/fonts/*",
"./docs/*": "./docs/*",
"./gala/*": "./gala/*",
"./prompt/*": "./prompt/*"
},
"scripts": {
"cli": "bun ./scripts/gum.ts",
"test": "bun ./scripts/test.ts",
"skill": "bun ./scripts/skill.ts && zip -r skills/gum-jsx.skill skills/gum-jsx",
"claude": "bun run skill && bun ./scripts/claude.ts"
},
"bin": {
"gum": "./scripts/gum.ts"
},
"dependencies": {
"@types/node": "^25.2.3",
"@types/papaparse": "^5.5.2",
"acorn-jsx": "^5.3.2",
"emojibase-regex": "^17.0.0",
"katex": "^0.16.33",
"linebreak": "^1.1.0",
"opentype.js": "^1.3.4",
"papaparse": "^5.5.3",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"@resvg/resvg-js": "^2.6.2",
"commander": "^14.0.3",
"express": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.72.1"
}
}