Files
claw-code/packages/gpt-runner-cli/package.json
2023-05-14 16:07:06 +08:00

60 lines
1.4 KiB
JSON

{
"name": "@nicepkg/gpt-runner-cli",
"version": "0.0.1",
"description": "CLI for GPT Runner",
"author": {
"name": "Jinming Yang",
"email": "2214962083@qq.com",
"url": "https://github.com/2214962083"
},
"license": "MIT",
"funding": "https://github.com/sponsors/2214962083",
"homepage": "https://github.com/nicepkg/gpt-runner/tree/main/packages/gpt-runner-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/nicepkg/gpt-runner",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/nicepkg/gpt-runner/issues"
},
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"gptr": "./bin/gpt-runner.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"dependencies": {
"@ampproject/remapping": "^2.2.1",
"@rollup/pluginutils": "^5.0.2",
"@nicepkg/gpt-runner-config": "workspace:*",
"@nicepkg/gpt-runner-core": "workspace:*",
"cac": "^6.7.14",
"chokidar": "^3.5.3",
"colorette": "^2.0.20",
"consola": "^3.1.0",
"fast-glob": "^3.2.12",
"magic-string": "^0.30.0",
"pathe": "^1.1.0",
"perfect-debounce": "^1.0.0"
}
}