-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "auth0-fetch",
"description": "auth0 library for cloudflare's durable objects and workers with sessions",
"keywords": [
"cloudflare",
"worker",
"auth0",
"cfw",
"durable objects",
"DO",
"fetch",
"authentication"
],
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "esbuild --bundle --sourcemap --format=esm --outfile=dist/index.mjs ./index.js",
"watch": "esbuild --watch --bundle --sourcemap --format=esm --outfile=dist/index.mjs ./index.js",
"publish": "npm adduser && npm publish",
"push": "git init && git remote add origin https://github.com/janat08/auth0-fetch.git && git add . && git commit -m 'fixed do' && git push --force --set-upstream origin master"
},
"dependencies": {
"@cloudflare/workers-types": "^3.14.1",
"cookie": "^0.4.1",
"itty-durable": "^0.4.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/auth0": "^2.35.3",
"@types/cookie": "^0.5.1",
"esbuild": "^0.13.15",
"esbuild-config": "^0.2.0",
"esbuild-plugin-postcss2": "^0.1.1",
"esbuild-plugin-stimulus": "^0.1.2",
"esbuild-serve": "^1.0.1",
"miniflare": "^2.1.0"
},
"funding": {
"type": "paypal",
"url": "https://www.paypal.me/janat08"
},
"version": "0.0.8",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/janat08/auth0-fetch.git"
},
"homepage": "https://github.com/janat08/auth0-fetch#readme"
}