-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "claude-math",
"version": "0.6.0",
"description": "Render math legibly in Claude Code and OpenAI Codex CLI. Emits Unicode glyphs instead of unrenderable LaTeX in the terminal. A stopgap until hosts render math natively.",
"keywords": [
"claude",
"claude-code",
"claude-code-plugin",
"codex",
"codex-cli",
"codex-skills",
"skill",
"math",
"latex",
"katex",
"unicode",
"terminal"
],
"homepage": "https://github.com/vladimirrott/claude-math",
"bugs": {
"url": "https://github.com/vladimirrott/claude-math/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vladimirrott/claude-math.git"
},
"license": "MIT",
"author": {
"name": "Vladimir Rotariu",
"email": "vladimirrott@users.noreply.github.com"
},
"type": "module",
"bin": {
"claude-math": "bin/claude-math.js"
},
"files": [
".claude-plugin/",
".codex-plugin/",
".agents/",
"skills/",
"SECURITY.md",
"bin/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test test/*.test.js",
"prepack": "node bin/claude-math.js prepack",
"prepublishOnly": "npm test && npm pack --dry-run"
},
"publishConfig": {
"access": "public"
}
}