forked from matthewpi/access-oidc
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
57
58
59
60
61
62
63
64
65
66
{
"name": "@matthewpi/access-oidc",
"description": "OpenID Connect server running on Cloudflare Workers and authenticated by Cloudflare Access",
"version": "0.0.1",
"license": "MIT",
"main": "dist/index.mjs",
"type": "module",
"private": true,
"scripts": {
"postinstall": "husky install",
"clean": "rm -f dist/*",
"build": "cross-env NODE_ENV=\"development\" $npm_node_execpath build.cjs",
"build:production": "cross-env NODE_ENV=\"production\" $npm_node_execpath build.cjs",
"dev": "miniflare --debug --watch --build-command \"$npm_execpath run build\" --kv KV_OIDC"
},
"dependencies": {
"jose": "4.3.7",
"~": "link:./src"
},
"devDependencies": {
"@cloudflare/workers-types": "3.3.0",
"cron-schedule": "3.0.4",
"cross-env": "7.0.3",
"esbuild": "0.14.10",
"eslint": "8.6.0",
"husky": "7.0.4",
"lint-staged": "12.1.4",
"miniflare": "2.0.0-rc.4",
"prettier": "2.5.1",
"typescript": "4.5.4",
"xo": "0.47.0"
},
"lint-staged": {
"src/**/*.{d.ts,ts}": [
"yarn xo",
"yarn prettier --write"
],
"**/*.json": [
"yarn prettier --write"
],
"**/*.md": [
"yarn prettier --write"
]
},
"engines": {
"node": ">=16.7",
"yarn": ">=1.22.0"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
},
"packageManager": "yarn@3.1.1",
"xo": {
"environments": [
"esnext"
],
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": 0,
"capitalized-comments": 0,
"import/extensions": 0,
"new-cap": 0
}
}
}