chatgpt-api/package.json

66 wiersze
1.8 KiB
JSON

2024-05-17 01:22:07 +00:00
{
"name": "agentic",
"private": true,
2024-05-17 01:22:07 +00:00
"author": "Travis Fischer <travis@transitivebullsh.it>",
2024-06-02 02:04:13 +00:00
"license": "MIT",
2024-05-17 01:22:07 +00:00
"repository": {
"type": "git",
2024-06-07 07:31:19 +00:00
"url": "git+https://github.com/transitive-bullshit/agentic.git"
2024-05-17 01:22:07 +00:00
},
2025-03-14 12:14:35 +00:00
"packageManager": "pnpm@10.6.3",
2024-05-17 01:22:07 +00:00
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev --concurrency 50 --continue",
2024-08-26 16:11:19 +00:00
"docs": "cd docs && npx mintlify dev",
"clean": "turbo clean",
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
"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",
2024-08-04 11:35:16 +00:00
"changeset": "changeset",
2024-08-04 11:36:03 +00:00
"release": "run-s release:*",
2024-08-04 11:35:16 +00:00
"release:build": "run-s build",
2025-03-16 09:43:31 +00:00
"release:changeset": "changeset",
2024-08-04 11:35:16 +00:00
"release:version": "changeset version",
"release:publish": "changeset publish",
2024-08-08 05:32:37 +00:00
"pretest": "run-s build",
"precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
2024-05-17 01:22:07 +00:00
},
"devDependencies": {
2025-03-01 14:54:46 +00:00
"@changesets/cli": "^2.28.1",
2024-07-01 06:13:22 +00:00
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
2025-03-14 12:14:35 +00:00
"@types/node": "^22.13.10",
"del-cli": "^6.0.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"husky": "^9.1.7",
2025-03-14 12:14:35 +00:00
"lint-staged": "^15.5.0",
"npm-run-all2": "^7.0.2",
2024-05-24 23:55:26 +00:00
"only-allow": "^1.2.1",
2025-03-14 12:14:35 +00:00
"prettier": "^3.5.3",
2025-02-22 08:46:02 +00:00
"syncpack": "14.0.0-alpha.10",
2025-03-01 14:54:46 +00:00
"tsup": "^8.4.0",
"tsx": "^4.19.3",
2025-03-01 14:54:46 +00:00
"turbo": "^2.4.4",
"typescript": "^5.8.2",
2025-03-14 12:14:35 +00:00
"vitest": "3.0.8",
2025-02-22 17:57:36 +00:00
"zod": "^3.24.2",
"zoominfo-api-auth-client": "^1.0.1"
2024-05-17 01:22:07 +00:00
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
2024-05-17 01:22:07 +00:00
]
}
}