-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.63 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@borderless/web-jwt",
"version": "2.1.2",
"publishConfig": {
"access": "public"
},
"description": "Small JWT library using the Web Crypto API",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/borderless/web-jwt.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/borderless/web-jwt",
"bugs": {
"url": "https://github.com/borderless/web-jwt/issues"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=19"
},
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"size": "size-limit",
"specs": "ts-scripts specs",
"test": "ts-scripts test && npm run -s size"
},
"files": [
"dist/"
],
"keywords": [
"jwt",
"jsonwebtoken",
"web",
"crypto",
"subtlecrypto",
"browser",
"worker",
"typescript"
],
"dependencies": {
"@borderless/base64": "^1.0.1"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.13.6",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^20.3.1",
"@vitest/coverage-v8": "^0.32.2",
"size-limit": "^8.2.4",
"typescript": "^5.1.3",
"vitest": "^0.32.2"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "1.1 KB"
}
],
"ts-scripts": {
"project": [
"tsconfig.build.json"
]
}
}