-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.69 KB
/
package.json
File metadata and controls
51 lines (51 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
{
"name": "github-actions-access-manager",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "ncc build src/server.ts",
"build:aws-lambda": "ncc build deployments/aws/lambda-handler.ts ",
"build:docker-container": "docker build -t localhost/github-access-token-server:latest .",
"build:vercel-function": "ncc build deployments/vercel/api/index.ts",
"build:netlify-function": "ncc build deployments/netlify/functions/index.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --forceExit --detectOpenHandles --verbose",
"start": "ncc run src/server.ts"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.1003.0",
"@aws-sdk/client-secrets-manager": "^3.1003.0",
"@hono/node-server": "^1.19.11",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"hono": "^4.12.5",
"jose": "^6.2.0",
"pino": "^10.3.1",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260118.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@octokit/types": "^16.0.0",
"@types/aws-lambda": "^8.10.159",
"@types/content-type": "^1.1.9",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.56.0",
"@vercel/ncc": "^0.38.4",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^30.2.0",
"pino-pretty": "^13.1.3",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.39.1"
},
"engines": {
"node": "24.x"
}
}