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

45 lines
995 B
JSON

{
"name": "@nicepkg/gpt-runner-core",
"version": "0.0.1",
"description": "",
"author": "Jinming Yang <2214962083@qq.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/2214962083",
"homepage": "https://github.com/nicepkg/gpt-runner/tree/main/packages/gpt-runner-core#readme",
"repository": {
"type": "git",
"url": "https://github.com/nicepkg/gpt-runner",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/nicepkg/gpt-runner/issues"
},
"keywords": [
"gpt-runner",
"chatgpt",
"prompt",
"ai"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"devDependencies": {
"unconfig": "^0.3.7"
}
}