-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.48 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "umbraprivacy-cli",
"version": "0.2.5",
"license": "MIT",
"bin": {
"umbra": "dist/cli.js"
},
"type": "module",
"engines": {
"bun": ">=1.0"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"dev": "tsc --watch",
"test": "prettier --check . && xo && bun test tests/"
},
"exports": {
"./lib": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@oclif/core": "^4.10.5",
"@oclif/plugin-help": "^6.2.44",
"@oclif/plugin-plugins": "^5.4.61",
"@solana/keychain-core": "^1.1.0",
"@solana/keychain-para": "^1.1.0",
"@solana/keychain-privy": "^1.1.0",
"@solana/keychain-turnkey": "^1.1.0",
"@solana/kit": "^6.7.0",
"@umbra-privacy/sdk": "^4.0.0",
"@umbra-privacy/web-zk-prover": "^2.0.1",
"ink": "^4.1.0",
"ink-select-input": "^5.0.0",
"ink-spinner": "^5.0.0",
"keytar": "^7.9.0",
"react": "^18.2.0",
"snarkjs": "^0.7.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/ink-spinner": "^3.0.5",
"@types/react": "^18.0.32",
"@vdemedes/prettier-config": "^2.0.1",
"bun-types": "^1.3.11",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"semantic-release": "^25.0.3",
"typescript": "^5.0.3",
"xo": "^0.54.2"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"oclif": {
"bin": "umbra",
"dirname": "umbra-cli",
"commands": {
"strategy": "explicit",
"target": "./dist/commands.js"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"helpClass": "./dist/help.js",
"theme": {
"sectionHeader": "bold",
"flag": "cyan",
"flagDefaultValue": "dim",
"command": "cyan",
"commandSummary": "dim",
"topic": "cyan",
"bin": "cyan"
},
"topics": {
"eta": {
"description": "Encrypted token account (ETA) commands"
},
"utxo": {
"description": "Stealth UTXO commands"
},
"plugin": {
"description": "Manage umbra-cli plugins"
}
}
}
}