jssign 0.3.2 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +45 -45
package/package.json CHANGED
@@ -1,46 +1,46 @@
1
- {
2
- "name": "jssign",
3
- "version": "0.3.2",
4
- "description": "A token generator library to encode and decode data using a secret key",
5
- "main": "dist/cjs/index.js",
6
- "module": "dist/esm/index.js",
7
- "types": "dist/esm/index.d.ts",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/SahilAggarwal2004/jssign.git"
11
- },
12
- "keywords": [
13
- "jssign",
14
- "jss",
15
- "javascript",
16
- "sign",
17
- "javascriptsign",
18
- "token",
19
- "encryption",
20
- "decryption",
21
- "jsonwebtoken",
22
- "sjcl",
23
- "typescript",
24
- "js",
25
- "encoder",
26
- "decoder",
27
- "jwt-alternative"
28
- ],
29
- "author": "Sahil Aggarwal",
30
- "license": "MIT",
31
- "bugs": {
32
- "url": "https://github.com/SahilAggarwal2004/jssign/issues"
33
- },
34
- "homepage": "https://github.com/SahilAggarwal2004/jssign#readme",
35
- "dependencies": {
36
- "sjcl": "^1.0.8"
37
- },
38
- "devDependencies": {
39
- "@types/sjcl": "^1.0.34"
40
- },
41
- "scripts": {
42
- "esm": "tsc",
43
- "cjs": "tsc --module commonjs --outDir dist/cjs --declaration false",
44
- "build": "pnpm i && pnpm run esm && pnpm run cjs"
45
- }
1
+ {
2
+ "name": "jssign",
3
+ "version": "0.3.6",
4
+ "description": "A token generator library to encode and decode data using a secret key",
5
+ "main": "dist/cjs/index.js",
6
+ "module": "dist/esm/index.js",
7
+ "types": "dist/esm/index.d.ts",
8
+ "scripts": {
9
+ "esm": "tsc",
10
+ "cjs": "tsc --module commonjs --outDir dist/cjs --declaration false",
11
+ "build": "bun i && bun esm && bun cjs"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/SahilAggarwal2004/jssign.git"
16
+ },
17
+ "keywords": [
18
+ "jssign",
19
+ "jss",
20
+ "javascript",
21
+ "sign",
22
+ "javascriptsign",
23
+ "token",
24
+ "encryption",
25
+ "decryption",
26
+ "jsonwebtoken",
27
+ "sjcl",
28
+ "typescript",
29
+ "js",
30
+ "encoder",
31
+ "decoder",
32
+ "jwt-alternative"
33
+ ],
34
+ "author": "Sahil Aggarwal",
35
+ "license": "MIT",
36
+ "bugs": {
37
+ "url": "https://github.com/SahilAggarwal2004/jssign/issues"
38
+ },
39
+ "homepage": "https://github.com/SahilAggarwal2004/jssign#readme",
40
+ "dependencies": {
41
+ "sjcl": "^1.0.8"
42
+ },
43
+ "devDependencies": {
44
+ "@types/sjcl": "^1.0.34"
45
+ }
46
46
  }