-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@joshuacc/recon",
"version": "0.3.0",
"description": "Gather background information to prompt LLMs",
"main": "dist/index.js",
"bin": {
"recon": "dist/index.js"
},
"type": "module",
"access": "public",
"scripts": {
"test": "vitest run",
"test:watch": "vitest run --watch",
"typecheck": "tsc --noEmit",
"recon": "tsx src/index.ts",
"format": "prettier --write \"./**/*.{ts,js,mjs}\"",
"format:check": "prettier --check \"./**/*.{ts,js,mjs}\"",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"check:static": "npm run typecheck && npm run lint:check && npm run format:check",
"check": "npm run check:static && npm run test",
"clean": "rimraf dist",
"build": "rimraf dist && tsc && chmod +x dist/index.js",
"relink": "npm run build && npm link",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuacc/recon.git"
},
"keywords": [
"llm",
"ai",
"chatgpt",
"openai",
"claude",
"anthropic"
],
"author": "Joshua Clanton",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshuacc/recon/issues"
},
"homepage": "https://github.com/joshuacc/recon#readme",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.5.0"
},
"dependencies": {
"clipboardy": "^4.0.0",
"commander": "^12.0.0",
"glob": "^10.3.12",
"zod": "^3.23.8"
}
}