kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
64 wiersze
1.7 KiB
JSON
64 wiersze
1.7 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@10.4.1",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "turbo build",
|
|
"dev": "turbo dev --concurrency 50 --continue",
|
|
"docs": "cd docs && npx mintlify dev",
|
|
"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",
|
|
"pretest": "run-s build",
|
|
"precommit": "lint-staged",
|
|
"preinstall": "npx only-allow pnpm",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.28.0",
|
|
"@fisch0920/eslint-config": "^1.4.0",
|
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
"@types/node": "^22.13.4",
|
|
"del-cli": "^6.0.0",
|
|
"dotenv": "^16.4.7",
|
|
"eslint": "^8.57.1",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.4.3",
|
|
"npm-run-all2": "^7.0.2",
|
|
"only-allow": "^1.2.1",
|
|
"prettier": "^3.5.1",
|
|
"syncpack": "14.0.0-alpha.10",
|
|
"tsup": "^8.3.6",
|
|
"tsx": "^4.19.3",
|
|
"turbo": "^2.4.2",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "3.0.6",
|
|
"zod": "^3.24.2",
|
|
"zoominfo-api-auth-client": "^1.0.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"prettier --ignore-unknown --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|