chatgpt-api/package.json

68 wiersze
1.9 KiB
JSON
Czysty Zwykły widok Historia

2025-04-04 10:53:50 +00:00
{
2025-06-28 14:52:23 +00:00
"name": "agentic",
2025-04-04 10:53:50 +00:00
"private": true,
"author": "Travis Fischer <travis@transitivebullsh.it>",
2025-06-20 04:05:47 +00:00
"license": "AGPL-3.0",
2025-04-04 10:53:50 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git"
2025-04-04 10:53:50 +00:00
},
2025-06-28 06:43:42 +00:00
"packageManager": "pnpm@10.12.4",
2025-04-04 10:53:50 +00:00
"engines": {
2025-06-26 10:52:09 +00:00
"node": ">=20"
2025-04-04 10:53:50 +00:00
},
"type": "module",
"scripts": {
2025-06-29 06:33:20 +00:00
"build": "turbo build --filter=!web --concurrency=32",
"dev": "turbo dev --continue --filter=!./examples/*",
2025-06-28 06:43:42 +00:00
"docs": "turbo run docs",
2025-04-04 10:53:50 +00:00
"clean": "turbo clean",
"fix": "run-s fix:*",
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
2025-06-29 06:33:20 +00:00
"test": "turbo test --concurrency=32",
2025-04-04 10:53:50 +00:00
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
2025-06-13 00:20:09 +00:00
"test:lint": "eslint --cache .",
2025-06-29 06:33:20 +00:00
"test:typecheck": "turbo test:typecheck --concurrency=32",
"test:unit": "turbo test:unit --concurrency=32",
2025-04-04 10:53:50 +00:00
"pretest": "run-s build",
"preinstall": "npx only-allow pnpm",
"prerelease": "run-s build",
2025-05-26 17:35:19 +00:00
"prepare": "simple-git-hooks",
2025-06-29 11:15:28 +00:00
"release": "bumpp -r && run-s build && pnpm publish -r",
2025-05-26 17:35:19 +00:00
"knip": "knip"
2025-04-04 10:53:50 +00:00
},
"devDependencies": {
2025-06-25 02:26:02 +00:00
"@dotenvx/dotenvx": "catalog:",
2025-04-04 10:53:50 +00:00
"@fisch0920/config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
2025-04-04 10:53:50 +00:00
"del-cli": "catalog:",
"dotenv": "catalog:",
2025-04-04 10:53:50 +00:00
"eslint": "catalog:",
"eslint-plugin-drizzle": "catalog:",
"knip": "catalog:",
2025-04-04 10:53:50 +00:00
"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:",
2025-04-04 10:53:50 +00:00
"vitest": "catalog:",
"zod": "catalog:"
},
"prettier": "@fisch0920/config/prettier",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
2025-04-04 10:53:50 +00:00
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
2025-06-13 19:31:46 +00:00
"eslint --cache --fix"
2025-04-04 10:53:50 +00:00
]
}
}