-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.03 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.03 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
{
"name": "excalirender",
"version": "1.10.5",
"type": "module",
"main": "src/index.ts",
"bin": {
"excalirender": "src/index.ts"
},
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build --compile --target=bun-linux-x64 ./src/index.ts --outfile excalirender",
"build:minified": "bun build --compile --minify --target=bun-linux-x64 ./src/index.ts --outfile excalirender",
"typecheck": "tsc --noEmit",
"lint": "biome check ./src ./tests ./scripts",
"lint:fix": "biome check --write ./src ./tests ./scripts",
"test:visual": "bun run tests/visual/run.ts",
"test:visual:update": "bun run tests/visual/run.ts --update",
"docker:build": "docker build -t excalirender-builder . && docker run --rm --entrypoint cp -v $(pwd):/output excalirender-builder /excalirender /output/",
"build:native": "docker build -f Dockerfile.native -o dist .",
"test:native": "bun run tests/native/run.ts",
"test:recursive": "bun run tests/recursive/run.ts",
"test:unit": "bun run tests/recursive/run.ts --unit-only",
"test:diff": "bun run tests/diff/run.ts",
"test:stdin-stdout": "bun run tests/stdin-stdout/run.ts",
"test:info": "bun run tests/info/run.ts",
"test:combine": "bun run tests/combine/run.ts",
"test:watch": "bun run tests/watch/run.ts",
"test:gif": "bun run tests/gif/run.ts"
},
"keywords": ["excalidraw", "cli", "png", "export"],
"author": "",
"license": "MIT",
"description": "CLI tool to convert .excalidraw files to PNG and SVG images",
"dependencies": {
"canvas": "^3.2.1",
"commander": "^14.0.2",
"perfect-freehand": "^1.2.0",
"points-on-curve": "^1.0.1",
"gifenc": "^1.0.3",
"roughjs": "^4.6.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@resvg/resvg-js": "^2.6.2",
"@types/bun": "^1.3.8",
"@types/node": "^25.0.10",
"@types/pngjs": "^6.0.5",
"image-size": "^2.0.2",
"omggif": "^1.0.10",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"typescript": "^5.9.3",
"wawoff2": "^2.0.1"
}
}