-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.31 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": "cookie-ai-cli",
"version": "1.4.3",
"bin": {
"ai": "./dist/main.js"
},
"files": [
"dist"
],
"description": "A command-line interface tool designed to bridge the gap between natural language processing and command-line operations.",
"repository": "github:CalebBarnes/cookie-ai-cli",
"author": "Caleb Barnes <https://github.com/CalebBarnes>",
"license": "MIT",
"scripts": {
"copy-ts-file": "cp src/ai-response-schema.ts dist/",
"build": "tsc && npm run copy-ts-file",
"build:watch": "tsc -w & npm run copy-ts-file",
"start": "node ./dist/main.js what is my ip",
"dev:init": "nodemon dist/main.js --init",
"dev": "nodemon dist/main.js",
"dev:watch": "concurrently \"npm:build:watch\" \"npm:dev\"",
"dev:error": "nodemon dist/main.js run a simple command that will throw an error in stderr",
"dev:debug": "nodemon dist/main.js rename my git branch --debug",
"dev:version": "nodemon dist/main.js --version"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"concurrently": "^8.2.2",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"keywords": [
"ai",
"cli",
"command line tool",
"openai",
"openai api",
"GPT-4",
"GPT-3",
"GPT"
]
}