-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "peekachu",
"version": "0.1.0-alpha.2",
"description": "Password manager for AIs — store secrets in OS keychain, inject into child processes, scrub output",
"type": "module",
"main": "./dist/cli.mjs",
"bin": {
"peekachu": "./bin/peekachu.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"gui": "cd gui && bun start"
},
"keywords": [
"secrets",
"keychain",
"ai",
"password-manager",
"scrubber",
"claude",
"cursor",
"devin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/needle-tools/peekachu.git"
},
"homepage": "https://github.com/needle-tools/peekachu",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@types/node": "^25.3.2",
"tsdown": "^0.21.0-beta.2",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}