-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 680 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 680 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
{
"name": "texto",
"author": "Climactic (https://climactic.co)",
"license": "Apache-2.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"serve": "bun run src/index.ts",
"format": "biome format --write src",
"lint": "biome lint --write src"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@tqman/nice-logger": "^1.0.6",
"elysia": "^1.1.22",
"elysia-compress": "^1.2.1",
"elysia-rate-limit": "^4.1.0",
"js-yaml": "^4.1.0",
"marked": "^14.1.3",
"zod": "^3.23.8"
}
}