-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 KB
/
package.json
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
{
"name": "excalidraw-brute-export-cli",
"description": "💪🔨🎭 Export Excalidraw diagrams to SVG or PNG using a headless browser, using the exact same export process as Excalidraw itself",
"readme": ".github/README.remotified.md",
"bin": {
"excalidraw-brute-export-cli": "./src/main.js"
},
"type": "module",
"version": "0.4.0",
"scripts": {
"format": "npx prettier --write package.json && npx prettier --write src/ && npx prettier --write --parser markdown \"LICENSE.md\" \".github/README.md.jinja2\" --write",
"genversion": "genversion --esm lib/version.js",
"prepublishOnly": "cp -f .github/README.remotified.md README.md && git diff --cached --name-only | xargs npm pack --dry-run"
},
"dependencies": {
"@caporal/core": "^2.0.7",
"playwright": "^1.43.0"
},
"devDependencies": {
"genversion": "^3.2.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=21.0.0 <22.0.0 || >=22.0.0 <23.0.0"
},
"keywords": [
"svg",
"export",
"drawing",
"png",
"browser",
"canvas",
"whiteboard",
"diagrams",
"excalidraw"
]
}