-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.8 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
{
"name": "paperchart",
"version": "0.1.0",
"description": "Clean, minimal chart PNGs for technical blog posts. Feed the CLI a JSON file, get a figure you can ship.",
"keywords": [
"charts",
"data-visualization",
"cli",
"png",
"blog",
"technical-writing",
"minimal",
"anthropic-style",
"openai-style",
"ai-skill",
"agent-skill"
],
"homepage": "https://shuakami.github.io/paperchart/",
"repository": {
"type": "git",
"url": "https://github.com/shuakami/paperchart.git"
},
"bugs": {
"url": "https://github.com/shuakami/paperchart/issues"
},
"license": "MIT",
"author": "shuakami <shuakami@sdjz.wiki>",
"type": "module",
"bin": {
"paperchart": "bin/paperchart.mjs"
},
"files": [
"bin",
"dist",
"skills",
"SKILL.md",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"snap": "node snap.mjs",
"prepare": "if [ -z \"$CI\" ] && [ -f tsconfig.json ] && [ -d src ]; then tsc -b && vite build; fi"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/noto-sans-sc": "^5.2.9",
"autoprefixer": "^10.5.0",
"playwright-chromium": "^1.59.1",
"postcss": "^8.5.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10"
}
}