-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "dpop",
"version": "1.4.1",
"description": "DPoP (RFC9449) for Web Platform API JavaScript runtimes",
"keywords": [
"dpop",
"browser",
"cloudflare-workers",
"deno",
"electron",
"javascript",
"nextjs",
"node",
"nodejs",
"oauth",
"oauth2",
"rfc9449",
"vercel-edge"
],
"homepage": "https://github.com/panva/dpop",
"repository": "panva/dpop",
"funding": {
"url": "https://github.com/sponsors/panva"
},
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"sideEffects": false,
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/index.js",
"build/index.d.ts"
],
"scripts": {
"_format": "find src -type f -name '*.ts' -o -name '*.mjs' | xargs prettier",
"build": "rm -rf build && tsc && tsc --declaration true --emitDeclarationOnly true --removeComments false",
"docs": "npx patch-package && typedoc",
"format": "npm run _format -- --write",
"format-check": "npm run _format -- --check"
},
"devDependencies": {
"@types/node": "^17.0.34",
"@typescript/lib-dom": "npm:@types/web",
"patch-package": "^6.4.7",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.4"
}
}