-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "@gutenye/password-manager-tools",
"version": "1.4.0",
"description": "Easily move/transfer/import/convert passwords from one password manager to another, including Bitwarden and Apple Passwords/iCloud Keychain.",
"keywords": [
"move passwords",
"transfer passwords",
"import passwords",
"export passwords",
"convert passwords",
"password manager",
"bitwarden",
"apple passwords",
"icloud keychain",
"apple icloud"
],
"license": "MIT",
"repository": "github:gutenye/password-manager-tools",
"type": "module",
"bin": "src/cli/cli.ts",
"files": ["tsconfig.json", "src", "!__tests__"],
"scripts": {
"lint": "biome check",
"lint:ci": "biome ci --reporter=github",
"test": "bun test",
"cli": "./cli"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"ink": "^5.0.1",
"ink-markdown": "^1.0.4",
"ink-text-input": "^6.0.0",
"invariant": "^2.2.4",
"lodash-es": "^4.17.21",
"papaparse": "^5.4.1",
"pastel": "^3.0.0",
"react": "^18.3.1",
"tldts": "^6.1.52",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.1.12",
"@types/invariant": "^2.2.37",
"@types/lodash-es": "^4.17.12",
"@types/papaparse": "^5.3.15",
"@types/react": "^18.3.12",
"conventional-changelog-conventionalcommits": "^8.0.0",
"ink-testing-library": "^4.0.0",
"memfs": "^4.14.0"
}
}