chatgpt-api/legacy/package.json

84 wiersze
1.9 KiB
JSON
Czysty Zwykły widok Historia

2024-05-17 01:22:07 +00:00
{
"name": "gptlint",
"private": true,
"version": "0.1.0",
"description": "TODO",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "PROPRIETARY",
"homepage": "https://trywalter.ai",
"repository": {
"type": "git",
"url": "transitive-bullshit/walter"
},
"packageManager": "pnpm@8.15.7",
"engines": {
"node": ">=18"
},
"type": "module",
"source": "./src/gptlint.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del dist",
"prebuild": "run-s clean",
"predev": "run-s clean",
"pretest": "run-s build",
"prepare": "husky",
"precommit": "lint-staged",
"test": "run-s test:*",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@dexaai/dexter": "^2.0.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"exit-hook": "^4.0.0",
"jsonrepair": "^3.6.1",
"ky": "^1.2.4",
"openai": "^4.47.1",
"p-map": "^7.0.2",
"p-retry": "^6.2.0",
"tiny-invariant": "^1.3.3",
"type-fest": "^4.16.0",
"zod": "^3.23.3"
},
"devDependencies": {
"@fisch0920/eslint-config": "^1.3.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.12.7",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"np": "^10.0.5",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.5.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --ignore-unknown --write"
]
}
}