-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.44 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
{
"name": "latchkey",
"version": "2.19.1",
"description": "A CLI tool that injects API credentials into curl requests to third-party services",
"author": "Imbue <hynek@imbue.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/imbue-ai/latchkey.git"
},
"homepage": "https://github.com/imbue-ai/latchkey#readme",
"bugs": {
"url": "https://github.com/imbue-ai/latchkey/issues"
},
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"latchkey": "./dist/src/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "node scripts/generateVersion.js",
"prepublishOnly": "npm run build",
"prebuild": "node scripts/generateVersion.js",
"build": "tsc && node -e \"require('fs').cpSync('skills', 'dist/skills', {recursive:true})\" ",
"predev": "node scripts/generateVersion.js",
"dev": "tsc --watch",
"lint": "eslint src tests scripts",
"lint:fix": "eslint src tests scripts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"scripts/**/*.ts\"",
"pretypecheck": "node scripts/generateVersion.js",
"typecheck": "tsc --noEmit",
"pretest": "node scripts/generateVersion.js",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli.js",
"prebun-compile": "node scripts/generateVersion.js",
"bun-compile": "bun build ./src/cli.ts --compile --external chromium-bidi --external electron --external playwright --external playwright-core --outfile latchkey",
"release-binaries": "npm install && bash scripts/releaseBinaries.sh"
},
"keywords": [
"cli",
"curl",
"api",
"credentials",
"authentication",
"agents",
"imbue",
"pi-package"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@imbue-ai/detent": "^1.8.0",
"@napi-rs/keyring": "^1.2.0",
"commander": "^12.0.0",
"playwright": "~1.60.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.0.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript": "^5.3.0",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"pi": {
"skills": [
"./dist/skills/generic"
],
"video": "https://github.com/imbue-ai/latchkey/releases/download/2.5.4/demo.mp4"
}
}