-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ninots-app",
"version": "0.8.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3.0"
},
"bin": {
"nino": "./nino"
},
"scripts": {
"dev": "bun --hot ./nino serve",
"start": "bun ./nino serve --prod",
"build": "bun build --compile --bytecode ./nino --outfile ninots",
"nino": "bun ./nino",
"type-check": "tsc --noEmit",
"verify:route-types": "bun run scripts/verify-route-types.ts",
"docs:generate": "typedoc",
"format": "bunx biome format --write .",
"lint": "bunx biome check .",
"lint:fix": "bunx biome check --write .",
"lint:fix:unsafe": "bunx biome check --write --unsafe .",
"test": "bun test"
},
"dependencies": {
"@ninots/auth": "^0.3.0",
"@ninots/cache": "^0.2.0",
"@ninots/config": "^0.1.0",
"@ninots/console": "^0.1.0",
"@ninots/container": "^0.1.0",
"@ninots/events": "^0.1.0",
"@ninots/filesystem": "^0.1.0",
"@ninots/foundation": "^0.1.0",
"@ninots/http": "^0.1.0",
"@ninots/logger": "^0.1.0",
"@ninots/mail": "^0.1.0",
"@ninots/middleware": "^0.1.0",
"@ninots/notifications": "^0.1.0",
"@ninots/orm": "^0.1.0",
"@ninots/queue": "^0.1.0",
"@ninots/routing": "^0.1.0",
"@ninots/session": "^0.3.0",
"@ninots/social-auth": "^0.1.0",
"@ninots/support": "^0.1.0",
"@ninots/validation": "^0.1.0",
"@ninots/view": "^0.1.0",
"@ninots/websocket": "^0.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@types/bun": "^1.3.13",
"typescript": "^7.0.0"
}
}