-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "contextify-cli",
"version": "1.0.0",
"description": "A simple tool to help you create detailed context files in your repository's directory structure.",
"main": "dist/index.js",
"bin": {
"contextify": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/existence-master/Contextify.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/existence-master/Contextify/issues"
},
"homepage": "https://github.com/existence-master/Contextify#readme",
"dependencies": {
"@google/generative-ai": "^0.24.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"conf": "^15.0.2",
"dotenv": "^17.2.3",
"glob": "^13.0.0",
"ignore": "^7.0.5",
"inquirer": "^13.2.1",
"ora": "^9.1.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^25.0.9",
"typescript": "^5.9.3"
}
}