-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 956 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
36
37
{
"name": "punt",
"version": "0.6.9",
"description": "Share terminal output instantly - CLI tool, ANSI color support, syntax highlighting, GitHub auth",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lance0/punt.git"
},
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"db:setup": "bun run scripts/setup-db.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch"
},
"devDependencies": {
"@types/bun": "^1.3.8"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@elysiajs/html": "^1.4.0",
"@elysiajs/swagger": "^1.3.1",
"@libsql/client": "^0.15.15",
"@libsql/kysely-libsql": "^0.4.1",
"ansi_up": "^6.0.6",
"better-auth": "^1.4.18",
"elysia": "^1.4.22",
"nanoid": "^5.1.6",
"shiki": "^3.22.0"
}
}