-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.69 KB
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
{
"name": "@decryption/cli",
"version": "0.4.0",
"description": "dcrypt \u2014 local-first CLI for encryption, BIP39 wallets and team secrets",
"author": "Constructive <developers@constructive.io>",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/decryption",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/decryption"
},
"bugs": {
"url": "https://github.com/constructive-io/decryption/issues"
},
"scripts": {
"copy": "makage assets",
"clean": "makage clean",
"prepublishOnly": "npm run build",
"build": "makage build",
"lint": "eslint . --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"keywords": [
"cli",
"dcrypt",
"encryption",
"secrets",
"wallet",
"bip39",
"age"
],
"dependencies": {
"@decryption/accounts": "workspace:*",
"@decryption/base": "workspace:*",
"@decryption/core": "workspace:*",
"@decryption/cosmology-compat": "workspace:*",
"@decryption/hashes": "workspace:*",
"@decryption/keys": "workspace:*",
"@decryption/secrets": "workspace:*",
"@decryption/shamir": "workspace:*",
"@decryption/vault": "workspace:*",
"@decryption/wallet": "workspace:*",
"@decryption/webauthn": "workspace:*",
"appstash": "^0.7.0",
"inquirerer": "^4.9.1",
"yanse": "^0.2.1"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"makage": "0.3.0"
},
"bin": {
"dcrypt": "index.js"
}
}