-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 915 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 915 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
38
39
40
41
42
43
44
45
46
{
"name": "lyn",
"module": "src/index.ts",
"type": "module",
"version": "0.0.1",
"engines": {
"bun": ">=1.3.6"
},
"author": {
"name": "rouret",
"url": "https://github.com/rouret"
},
"repository": {
"type": "git",
"url": "https://github.com/rouret/lyn"
},
"homepage": "https://github.com/rouret/lyn",
"keywords": [
"lyn",
"framework",
"backend",
"typescript"
],
"license": "MIT",
"scripts": {
"dev": "bun --hot run testing/local.ts",
"deadcode": "knip",
"test": "NODE_ENV=lyn-test bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.0.3",
"@types/pg": "^8.16.0",
"knip": "^5.79.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"better-auth": "^1.4.10",
"pg": "^8.16.3",
"zod": "^4.3.4"
}
}