-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "trayce",
"version": "0.3.0",
"description": "A hand-drawn sketch pad for Claude Code sessions. Draw in your browser, pick a session, submit — Claude sees your sketch as a PNG alongside your prompt.",
"homepage": "https://github.com/SDS-Mode/trayce",
"repository": {
"type": "git",
"url": "https://github.com/SDS-Mode/trayce.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bun run --watch server/index.ts",
"dev:client": "bun build client/app.ts --outdir dist/client --target browser --watch",
"build:client": "bun build client/app.ts --outdir dist/client --target browser && cp client/index.html client/style.css client/theme-preload.js dist/client/",
"start": "bun run server/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"test": "bun test",
"build:image": "bash scripts/build-image.sh"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/bun": "^1.3.11",
"playwright": "1.59.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"perfect-freehand": "^1.2.3",
"pixi.js": "^8.17.1",
"zod": "^4"
}
}