-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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": "jsonwebtoken-esm",
"version": "2.0.1",
"description": "A wrapper that rebundles [`jsonwebtoken`](https://www.npmjs.com/package/jsonwebtoken) into ESM, so you can use it in your `vite`, `skypack`, or wherever you need ESM.",
"keywords": [
"jwt",
"jsonwebtoken"
],
"bugs": {
"url": "https://github.com/sanity-io/jsonwebtoken-esm/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sanity-io/jsonwebtoken-esm.git"
},
"license": "MIT",
"author": "Sanity.io <[email protected]>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.js",
"./decode": "./dist/decode.js",
"./verify": "./dist/verify.js",
"./sign": "./dist/sign.js",
"./lib/JsonWebTokenError": "./dist/lib/JsonWebTokenError.js",
"./lib/NotBeforeError": "./dist/lib/NotBeforeError.js",
"./lib/psSupported": "./dist/lib/psSupported.js",
"./lib/timespan": "./dist/lib/timespan.js",
"./lib/TokenExpiredError": "./dist/lib/TokenExpiredError.js"
},
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"typesVersions": {
"*": {
"decode": [
"./types/decode.d.ts"
],
"sign": [
"./types/sign.d.ts"
],
"verify": [
"./types/verify.d.ts"
]
}
},
"files": [
"dist",
"types"
],
"scripts": {
"prebuild": "npx rimraf dist",
"build": "node esbuild.config",
"format": "prettier . --write",
"prepublishOnly": "npm run build",
"test": "package-check && prettier . --check"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": ">=0.2.3",
"@esbuild-plugins/node-modules-polyfill": ">=0.2.2",
"@sanity/semantic-release-preset": "^4.0.0",
"@skypack/package-check": "^0.2.2",
"crypto-browserify": "^3.12.0",
"esbuild": ">=0.17.12",
"esbuild-plugin-alias": "^0.2.1",
"jsonwebtoken": "^9.0.0",
"ls-engines": "^0.9.0",
"prettier": "^2.8.3",
"prettier-plugin-packagejson": "^2.4.3",
"rimraf": "^5.0.0"
},
"engines": {
"node": ">=14.18"
}
}