-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "modstr",
"version": "1.0.0",
"description": "Smart Moderation for the Nostr Protocol",
"author": "zigbalthazar",
"repository": "https://github.com/zigBalthazar/modstr.git",
"license": "MIT",
"main": "index.ts",
"private": false,
"scripts": {
"build": "tsc && tsup",
"start:dev": "node --import=tsx --watch src/index.ts",
"start:prod": "node dist/index.js",
"lint": "biome lint --fix",
"format": "biome format --write",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"check": "npm run lint && npm run format && npm run build"
},
"dependencies": {
"@ai-sdk/deepseek": "^0.2.14",
"@ai-sdk/google": "^1.2.18",
"@ai-sdk/openai": "^1.3.22",
"@asteasolutions/zod-to-openapi": "7.3.2",
"ai": "^4.3.16",
"cors": "2.8.5",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "5.1.0",
"express-rate-limit": "7.5.0",
"helmet": "8.1.0",
"http-status-codes": "2.3.0",
"i": "^0.3.7",
"nostr-tools": "^2.13.0",
"npm": "^11.4.1",
"pino": "9.7.0",
"pino-http": "10.4.0",
"swagger-ui-express": "5.0.1",
"zod": "^3.25.28"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/cors": "2.8.18",
"@types/express": "5.0.2",
"@types/supertest": "6.0.3",
"@types/swagger-ui-express": "4.1.8",
"@vitest/coverage-v8": "3.1.4",
"pino-pretty": "13.0.0",
"supertest": "7.1.1",
"tsup": "8.5.0",
"tsx": "4.19.4",
"typescript": "5.8.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.4"
},
"tsup": {
"entry": ["src/index.ts"],
"outDir": "dist",
"format": ["esm", "cjs"],
"target": "es2020",
"sourcemap": true,
"clean": true,
"dts": true,
"splitting": false,
"skipNodeModulesBundle": true
},
"packageManager": "npm@10.9.0"
}