-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.29 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
79
{
"name": "@functionland/fula-sec-web",
"version": "2.0.3",
"description": "This library provides security features of Fula Protocol",
"type": "module",
"browser": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"browser": {
"default": "./lib/esm/index.js"
},
"node": {
"require": "./lib/cjs/index.js"
},
"default": "./lib/esm/index.js"
}
},
"scripts": {
"build": "rimraf lib && node scripts/build.mjs && tsc",
"start": "node examples/jwet.encryption.js",
"lint": "eslint . --ext .ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"keywords": [
"encryption",
"jwe",
"jwt",
"jwet",
"token",
"fula"
],
"author": "Jamshid Saidov <https://github.com/Ruffiano>",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@esbuild-plugins/node-globals-polyfill": "~0.1.1",
"@esbuild-plugins/node-modules-polyfill": "~0.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"cross-env": "^7.0.3",
"esbuild": "~0.14.25",
"esbuild-node-externals": "^1.2.0",
"esbuild-plugin-babel": "^0.2.3",
"esbuild-runner": "~2.2.1",
"eslint": "^8.10.0",
"jest": "^29.7.0",
"npm-dts": "^1.3.11",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"uint8arrays": "^3.1.1"
},
"dependencies": {
"@stablelib/ed25519": "^2.0.0",
"@stablelib/hmac": "^1.0.1",
"@stablelib/sha512": "^1.0.1",
"@stablelib/x25519": "^1.0.2",
"buffer": "^6.0.3",
"did-jwt": "^5.12.4",
"js-sha3": "^0.8.0",
"tslib": "^2.4.0",
"uint8arrays": "^3.1.1"
},
"files": [
"lib/**/*",
"examples/*",
"scripts/*"
],
"engines": {
"node": ">=16.0.0"
}
}