2022-11-07 07:20:04 +03:00
|
|
|
{
|
2022-11-15 22:27:53 +03:00
|
|
|
"name": "@abhagsain/ai-cli",
|
2024-01-20 21:37:01 +03:00
|
|
|
"version": "1.3.0",
|
2022-11-16 08:41:29 +03:00
|
|
|
"description": "Get answers for CLI commands from GPT3 right from your terminal",
|
2022-11-07 07:20:04 +03:00
|
|
|
"author": "Anurag Bhagsain @abhagsain",
|
|
|
|
"bin": {
|
|
|
|
"ai": "./bin/run"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/abhagsain/ai-cli",
|
2022-11-15 22:52:21 +03:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2022-11-07 07:20:04 +03:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"repository": "abhagsain/ai-cli",
|
|
|
|
"files": [
|
|
|
|
"/bin",
|
|
|
|
"/dist",
|
|
|
|
"/npm-shrinkwrap.json",
|
|
|
|
"/oclif.manifest.json"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"@oclif/core": "^1.19.1",
|
2022-12-07 20:11:20 +03:00
|
|
|
"@oclif/plugin-autocomplete": "^1.3.6",
|
2022-11-07 07:20:04 +03:00
|
|
|
"@oclif/plugin-help": "^5",
|
2022-12-07 20:11:20 +03:00
|
|
|
"@oclif/plugin-update": "^3.0.7",
|
2022-11-07 07:20:04 +03:00
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"clipboardy": "^3.0.0",
|
2022-11-15 21:47:23 +03:00
|
|
|
"fs-extra": "^10.1.0",
|
2022-11-07 07:20:04 +03:00
|
|
|
"inquirer": "^8.2.2",
|
2024-01-20 21:37:01 +03:00
|
|
|
"openai": "^4.24.7"
|
2022-11-07 07:20:04 +03:00
|
|
|
},
|
2022-11-15 22:52:21 +03:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2022-11-07 07:20:04 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"@oclif/test": "^2.2.8",
|
|
|
|
"@types/chai": "^4",
|
|
|
|
"@types/clipboardy": "^2.0.1",
|
2022-11-15 21:47:23 +03:00
|
|
|
"@types/fs-extra": "^9.0.13",
|
2022-11-07 07:20:04 +03:00
|
|
|
"@types/inquirer": "^8.2.1",
|
|
|
|
"@types/mocha": "^9.0.0",
|
|
|
|
"@types/node": "^16.18.3",
|
|
|
|
"chai": "^4",
|
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-oclif": "^4",
|
|
|
|
"eslint-config-oclif-typescript": "^1.0.3",
|
|
|
|
"mocha": "^9",
|
|
|
|
"oclif": "^3",
|
|
|
|
"shx": "^0.3.3",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"tslib": "^2.3.1",
|
|
|
|
"typescript": "^4.8.4"
|
|
|
|
},
|
|
|
|
"oclif": {
|
|
|
|
"bin": "ai",
|
|
|
|
"dirname": "ai",
|
|
|
|
"commands": "./dist/commands",
|
|
|
|
"plugins": [
|
2022-12-07 20:11:20 +03:00
|
|
|
"@oclif/plugin-help",
|
|
|
|
"@oclif/plugin-update",
|
|
|
|
"@oclif/plugin-autocomplete"
|
2022-11-07 07:20:04 +03:00
|
|
|
],
|
|
|
|
"topicSeparator": " ",
|
|
|
|
"topics": {
|
|
|
|
"hello": {
|
|
|
|
"description": "Say hello to the world and others"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
|
|
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
|
|
"posttest": "yarn lint",
|
|
|
|
"prepack": "yarn build && oclif manifest && oclif readme",
|
2022-11-15 22:52:21 +03:00
|
|
|
"version": "oclif readme && git add README.md",
|
|
|
|
"test": "echo \"No test specified\""
|
2022-11-07 07:20:04 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=12.0.0"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/abhagsain/ai-cli/issues",
|
|
|
|
"keywords": [
|
2022-11-16 08:41:29 +03:00
|
|
|
"oclif",
|
|
|
|
"gpt3",
|
|
|
|
"ai-cli",
|
|
|
|
"ai",
|
|
|
|
"cli",
|
|
|
|
"@abhagsain/ai-cli"
|
2022-11-07 07:20:04 +03:00
|
|
|
],
|
|
|
|
"types": "dist/index.d.ts"
|
2022-12-07 20:14:43 +03:00
|
|
|
}
|