-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "skyhook",
"version": "1.0.0",
"description": "Parses webhooks and forwards them in the proper format to Discord.",
"type": "module",
"exports": "./dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"start": "node dist/index.js",
"dev": "node --watch --experimental-strip-types src/index.ts",
"test": "node --experimental-strip-types --test 'test/**/*-spec.ts'",
"lint": "biome check src test",
"lint:fix": "biome check --write src test",
"deploy": "gcloud run deploy skyhook --source . --region us-central1 --allow-unauthenticated --max-instances 1 --port 8080",
"logs": "gcloud run services logs tail skyhook --region us-central1"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^24.0.0",
"@types/turndown": "^5.0.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@hono/node-server": "^2.0.3",
"hono": "^4.12.22",
"turndown": "^7.2.4"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"repository": {
"url": "https://github.com/Commit451/skyhook"
},
"bugs": {
"url": "https://github.com/Commit451/skyhook/issues"
},
"license": "MIT",
"keywords": [
"node",
"skyhook",
"discord",
"webhook"
]
}