-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@handles-net/handles-server",
"version": "0.3.1",
"description": "Verify Bluesky handles.",
"keywords": [
"bluesky",
"bsky",
"handles"
],
"homepage": "https://handles.net",
"bugs": {
"url": "https://github.com/prompt/handles-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prompt/handles-server"
},
"license": "MIT",
"main": "dist/index.js",
"bin": "bin/index.js",
"scripts": {
"build": "npx tsc",
"dev": "npx ts-node index.ts",
"fmt": "npm run lint && npm run validate",
"lint": "npx prettier . --write && npx eslint .",
"package": "npx ncc build index.ts -o bin && npx pkg bin/index.js --output ./builds/handles-server",
"test": "npx jest",
"validate": "npx --package typescript tsc --noEmit"
},
"dependencies": {
"pg": "^8.13.1",
"pino": "^9.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"node-mocks-http": "^1.16.2",
"pino-pretty": "^13.0.0",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}