-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 981 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 981 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "bitty-tui",
"version": "0.0.21",
"license": "MIT",
"repository": "https://github.com/mceck/bitty",
"keywords": [
"bitwarden",
"vaultwarden",
"tui",
"cli",
"terminal",
"ink",
"react"
],
"bin": {
"bitty": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"watch": "tsc --watch",
"dev": "tsc && node dist/cli.js"
},
"files": [
"dist"
],
"dependencies": {
"argon2": "^0.44.0",
"chalk": "^5.6.2",
"clipboardy": "^5.3.1",
"ink": "^6.3.0",
"otplib": "^13.3.0",
"react": "^19.1.0",
"read-package-up": "^12.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^8.0.1",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.2.0",
"ink-testing-library": "^4.0.0",
"typescript": "^5.0.3"
}
}