-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "jssign",
"version": "0.3.6",
"description": "A token generator library to encode and decode data using a secret key",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"esm": "tsc",
"cjs": "tsc --module commonjs --outDir dist/cjs --declaration false",
"build": "bun i && bun esm && bun cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SahilAggarwal2004/jssign.git"
},
"keywords": [
"jssign",
"jss",
"javascript",
"sign",
"javascriptsign",
"token",
"encryption",
"decryption",
"jsonwebtoken",
"sjcl",
"typescript",
"js",
"encoder",
"decoder",
"jwt-alternative"
],
"author": "Sahil Aggarwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/SahilAggarwal2004/jssign/issues"
},
"homepage": "https://github.com/SahilAggarwal2004/jssign#readme",
"dependencies": {
"sjcl": "^1.0.8"
},
"devDependencies": {
"@types/sjcl": "^1.0.34"
}
}