-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 863 Bytes
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
{
"name": "rsa-helper",
"version": "1.0.1",
"description": "📦 Encrypt / Decrypt / Sign / Extract / Verify",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"clean": "rm -rf ./dist/*.*",
"lint": "prettier --write ./src/**/*.{ts,js}",
"export": "tsc && webpack"
},
"main": "./dist/index.js",
"type": "./dist/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/node-forge": "^0.9.4",
"cbor": "^5.1.0",
"node-forge": "^0.9.1",
"rsa-compat": "^2.0.8"
},
"devDependencies": {
"@types/cbor": "^5.0.1",
"@types/node": "^14.0.27",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}