-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "access-workers-oidc",
"author": "Adam Janis <[email protected]>",
"version": "1.0.0",
"private": true,
"module": "./dist/main.mjs",
"scripts": {
"build": "npx tsc && node build.js",
"dev": "miniflare --modules --watch",
"deploy": "wrangler publish",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,mjs,css,json,md}'"
},
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.2.5",
"esbuild": "^0.13.3",
"esbuild-plugin-yaml": "^0.0.1",
"prettier": "^1.19.1",
"rollup": "^2.36.1",
"rollup-plugin-yaml": "^2.0.0",
"typescript": "^4.4.3"
},
"dependencies": {
"itty-router": "^2.1.9",
"jwt-decode": "^3.1.2",
"miniflare": "^1.3.3",
"rfc4648": "^1.5.0",
"uuid": "^8.3.2",
"worktop": "^0.7.3"
}
}