-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"logs": "wrangler tail",
"refresh-session": "tsx support/refresh-session.ts",
"refresh-session:local": "env OTP=\"$(op item get --vault 'actions-oidc' 'GitHub - depot-public-oidc' --otp)\" USERNAME=depot-public-oidc PASSWORD=\"$(op item get --vault 'actions-oidc' 'GitHub - depot-public-oidc' --fields password --reveal)\" LOCAL=true tsx support/refresh-session.ts"
},
"dependencies": {
"@github/stable-socket": "^1.1.0",
"@octokit/request": "^9.1.3",
"abort-controller-x": "^0.4.3",
"date-fns": "^4.1.0",
"hono": "^4.6.3",
"rfc4648": "^1.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@octokit/webhooks-types": "^7.5.1",
"playwright": "^1.47.2",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"wrangler": "^3.78.12"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"pluginSearchDirs": false,
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}