oauth4webapi 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,80 @@
1
+ {
2
+ "name": "oauth4webapi",
3
+ "version": "1.2.1",
4
+ "description": "OAuth 2 / OpenID Connect for Web Platform API JavaScript runtimes",
5
+ "keywords": [
6
+ "auth",
7
+ "authentication",
8
+ "authorization",
9
+ "basic",
10
+ "browser",
11
+ "certified",
12
+ "client",
13
+ "cloudflare-workers",
14
+ "deno",
15
+ "electron",
16
+ "fapi",
17
+ "javascript",
18
+ "nextjs",
19
+ "node",
20
+ "nodejs",
21
+ "oauth",
22
+ "oauth2",
23
+ "oidc",
24
+ "openid-connect",
25
+ "openid",
26
+ "vercel-edge"
27
+ ],
28
+ "homepage": "https://github.com/panva/oauth4webapi",
29
+ "repository": "panva/oauth4webapi",
30
+ "funding": {
31
+ "url": "https://github.com/sponsors/panva"
32
+ },
33
+ "license": "MIT",
34
+ "author": "Filip Skokan <panva.ip@gmail.com>",
35
+ "sideEffects": false,
36
+ "type": "module",
37
+ "main": "./build/index.js",
38
+ "types": "./build/index.d.ts",
39
+ "files": [
40
+ "build/index.js",
41
+ "build/index.d.ts"
42
+ ],
43
+ "scripts": {
44
+ "_format": "find src test tap examples conformance -type f -name '*.ts' -o -name '*.mjs' | xargs prettier",
45
+ "build": "rm -rf build && tsc && tsc --declaration true --emitDeclarationOnly true --removeComments false && tsc -p test && tsc -p examples && tsc -p conformance && tsc -p tap",
46
+ "conformance": "patch-package && NODE_OPTIONS='--no-warnings --loader=@esbuild-kit/esm-loader' ava --config conformance/ava.config.ts",
47
+ "coverage": "patch-package && c8 ava",
48
+ "docs": "patch-package && typedoc",
49
+ "format": "npm run _format -- --write",
50
+ "format-check": "npm run _format -- --check",
51
+ "prepack": "npm run format && npm run docs && ./examples/.update-diffs.sh && git diff --quiet && npm run test && npm run build",
52
+ "tap:deno": "./tap/.deno.sh",
53
+ "tap:edge-runtime": "./tap/.edge-runtime.sh",
54
+ "tap:node": "./tap/.node.sh",
55
+ "tap:workers": "./tap/.workers.sh",
56
+ "tap:browsers": "./tap/.browsers.sh",
57
+ "test": "ava"
58
+ },
59
+ "devDependencies": {
60
+ "@esbuild-kit/esm-loader": "^2.5.0",
61
+ "@types/node": "^18.8.3",
62
+ "@types/qunit": "^2.19.3",
63
+ "ava": "^4.3.3",
64
+ "c8": "^7.12.0",
65
+ "edge-runtime": "^1.1.0-beta.31",
66
+ "jose": "^4.10.0",
67
+ "patch-package": "^6.4.7",
68
+ "prettier": "^2.7.1",
69
+ "prettier-plugin-jsdoc": "^0.4.2",
70
+ "qunit": "^2.19.1",
71
+ "testcafe": "^2.0.1",
72
+ "testcafe-browser-provider-browserstack": "^1.14.0",
73
+ "timekeeper": "^2.2.0",
74
+ "typedoc": "^0.23.15",
75
+ "typedoc-plugin-markdown": "^3.13.6",
76
+ "typescript": "^4.8.4",
77
+ "undici": "^5.11.0",
78
+ "workerd": "^1.20220926.3"
79
+ }
80
+ }