-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 966 Bytes
/
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
38
39
40
{
"name": "translate-backend",
"version": "2.1.0",
"author": "Toil",
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/translate-backend"
},
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun src/index.ts",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/swagger": "^1.1.6",
"@toil/translate": "^1.0.3",
"elysia": "^1.1.25",
"pino": "^9.5.0",
"pino-loki": "^2.3.1"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.9",
"bun-types": "^1.1.37",
"eslint": "^9.15.0",
"eslint-plugin-oxlint": "^0.13.2",
"husky": "^9.1.7",
"oxlint": "^0.13.2",
"pino-pretty": "^13.0.0",
"typescript-eslint": "^8.16.0"
},
"module": "src/index.js",
"bun-create": {
"start": "bun run src/index.ts"
},
"type": "module",
"peerDependencies": {
"typescript": "^5.6.3"
}
}