chatgpt-api/legacy/package.json

65 wiersze
1.6 KiB
JSON

{
"name": "agentic",
"private": true,
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency 50 --continue",
"clean": "turbo clean",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "turbo test:lint",
"test:typecheck": "turbo test:typecheck",
"test:unit": "turbo test:unit",
"changeset": "changeset",
"release": "run-s release:*",
"release:build": "run-s build",
"release:version": "changeset version",
"release:publish": "changeset publish",
"precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^22.1.0",
"del-cli": "^5.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"npm-run-all2": "^6.2.2",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"tsx": "^4.16.5",
"turbo": "^2.0.11",
"typescript": "^5.5.4",
"vitest": "2.0.5",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"esbuild": "^0.23.0"
}
}
}