chatgpt-api/package.json

66 wiersze
1.8 KiB
JSON

{
"name": "agentic-platform",
"private": true,
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
},
"packageManager": "pnpm@10.12.2",
"engines": {
"node": ">=22"
},
"type": "module",
"scripts": {
"build": "turbo build --filter=!web",
"dev": "turbo dev --continue --filter=!./examples/*",
"clean": "turbo clean",
"fix": "run-s fix:*",
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint --cache .",
"test:typecheck": "turbo test:typecheck",
"test:unit": "turbo test:unit",
"pretest": "run-s build",
"preinstall": "npx only-allow pnpm",
"prerelease": "run-s build",
"prepare": "simple-git-hooks",
"release": "bumpp -r && pnpm publish -r",
"knip": "knip"
},
"devDependencies": {
"@dotenvx/dotenvx": "catalog:",
"@fisch0920/config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"del-cli": "catalog:",
"eslint": "catalog:",
"eslint-plugin-drizzle": "catalog:",
"knip": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"only-allow": "catalog:",
"prettier": "catalog:",
"simple-git-hooks": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:",
"zod": "catalog:"
},
"prettier": "@fisch0920/config/prettier",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --cache --fix"
]
}
}