-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "@feelinglovelynow/jwt",
"version": "1.0.8",
"description": "Node and/or Edge helper functions to create JWK's, create JWT's, decode JWT's and verify JWT's with the subtle crypto api's ECDSA: SHA-512 algorithm",
"license": "MIT",
"type": "module",
"types": "./dist/index.ts",
"exports": "./dist/index.js",
"author": "https://github.com/feelinglovelynow?tab=repositories",
"files": [
"dist",
"tsc",
"src"
],
"keywords": [
"jwt",
"jwk",
"security",
"ECDSA",
"token",
"jsonwebtoken",
"svelte",
"sveltekit",
"typescript",
"cloudflare",
"cloudflare workers",
"browser",
"edge",
"serverless",
"verify",
"decode",
"ECDSA SHA-512"
],
"scripts": {
"build": "bash ./build.sh",
"cloud": "pnpm build && pnpm publish --access public .",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"buffer": "^6.0.3",
"esbuild": "^0.19.7",
"jest": "^29.7.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feelinglovelynow/jwt.git"
},
"bugs": {
"url": "https://github.com/feelinglovelynow/jwt/issues"
}
}