-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "whiz_cli",
"version": "0.0.8-alpha.0",
"description": "A copilot for your terminal.",
"main": "index.ts",
"type": "module",
"private": false,
"files": [
"bin",
"build",
"src",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"add": "npm run build && npm install -g .",
"push": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/searchableguy/whiz.git"
},
"author": "searchableguy",
"license": "MIT",
"bugs": {
"url": "https://github.com/searchableguy/whiz/issues"
},
"bin": {
"whiz": "./bin/run.js",
"wz": "./bin/run.js",
"wzd": "./bin/dev.js"
},
"homepage": "https://github.com/searchableguy/whiz#readme",
"devDependencies": {
"@types/node": "^20.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"openai": "^4.8.0",
"ora": "^7.0.1",
"tsx": "^3.12.10"
}
}