-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 795 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 795 Bytes
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
{
"name": "excalidraw-cli",
"version": "0.1.0",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"excalidraw-cli": "bin/cli.ts"
},
"scripts": {
"start": "bun run bin/cli.ts",
"render": "bun run bin/cli.ts render",
"prepare-fonts": "bun run scripts/prepare-fonts.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/jsdom": "^28.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@excalidraw/utils": "^0.1.3-test32",
"@resvg/resvg-js": "^2.6.2",
"canvas": "^3.2.1",
"commander": "^14.0.3",
"jsdom": "^28.1.0",
"nanoid": "^5.1.6",
"puppeteer": "^24.37.5",
"yaml": "^2.8.2",
"zod": "^4.3.6"
}
}