-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "repos-automation",
"version": "1.0.0",
"description": "",
"private": true,
"engines": {
"node": ">=22"
},
"main": "dist/functions/index.js",
"scripts": {
"build": "tsc",
"postinstall": "node scripts/printSHA.js",
"bundle": "esbuild --bundle --platform=node --format=cjs --target=node22 --external:@azure/functions-core --outfile=dist/functions/index.js src/functions/index.ts",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "func start",
"test": "vitest run"
},
"dependencies": {
"@azure/functions": "^4.11.2",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks-methods": "^6.0.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.6.1",
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^22.19.13",
"esbuild": "^0.28.0",
"knip": "^5.85.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"packageManager": "npm@11.11.0+sha512.f36811c4aae1fde639527368ae44c571d050006a608d67a191f195a801a52637a312d259186254aa3a3799b05335b7390539cf28656d18f0591a1125ba35f973"
}