-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.44 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
{
"name": "chainlocker",
"version": "1.3.2",
"description": "Command line interface for GUN relay-server deployment, gun resource routes, and secure data storage/retrevial",
"main": "build/index.js",
"scope": "build/scope.js",
"types": "build/types/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"prettier": "prettier --write '**/*.{json,mjs,ts,mts}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bresnow/chainlocker-api"
},
"keywords": [
"decentralized",
"password",
"vault",
"storage"
],
"author": "Bresnow",
"license": "MIT",
"homepage": "https://github.com/bresnow/chainlocker-api#readme",
"dependencies": {
"btoa": "^1.2.1",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"elliptic": "^6.5.4",
"fast-glob": "^3.2.11",
"global": "^4.4.0",
"globby": "^13.1.2",
"gun": "^0.2020.1237",
"lz-object": "^0.1.7",
"lz-string": "^1.4.4",
"node-forge": "^1.3.1"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/elliptic": "^6.4.14",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.1",
"@types/lz-string": "^1.3.34",
"@types/node": "^17.0.26",
"@types/node-forge": "^1.0.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"esbuild": "^0.14.48",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"typescript": "^4.8.2",
"yargs": "^17.5.1"
}
}