2024-05-17 01:22:07 +00:00
|
|
|
{
|
2024-08-04 02:36:44 +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": {
|
2024-08-04 03:54:04 +00:00
|
|
|
"build": "turbo build",
|
2024-08-05 05:28:58 +00:00
|
|
|
"dev": "turbo dev --concurrency 50 --continue",
|
2024-08-26 16:11:19 +00:00
|
|
|
"docs": "cd docs && npx mintlify dev",
|
2024-08-04 03:54:04 +00:00
|
|
|
"clean": "turbo clean",
|
2025-02-28 11:30:39 +00:00
|
|
|
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
|
2024-08-04 03:54:04 +00:00
|
|
|
"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",
|
2024-08-04 02:36:44 +00:00
|
|
|
"precommit": "lint-staged",
|
|
|
|
"preinstall": "npx only-allow pnpm",
|
2024-08-04 03:54:04 +00:00
|
|
|
"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",
|
2024-10-21 23:10:07 +00:00
|
|
|
"@total-typescript/ts-reset": "^0.6.1",
|
2025-03-14 12:14:35 +00:00
|
|
|
"@types/node": "^22.13.10",
|
2024-10-21 23:10:07 +00:00
|
|
|
"del-cli": "^6.0.0",
|
2025-02-19 14:16:07 +00:00
|
|
|
"dotenv": "^16.4.7",
|
2024-10-21 23:10:07 +00:00
|
|
|
"eslint": "^8.57.1",
|
2024-11-21 07:11:14 +00:00
|
|
|
"husky": "^9.1.7",
|
2025-03-14 12:14:35 +00:00
|
|
|
"lint-staged": "^15.5.0",
|
2025-02-19 14:16:07 +00:00
|
|
|
"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",
|
2025-02-19 14:16:07 +00:00
|
|
|
"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}": [
|
2024-08-04 02:36:44 +00:00
|
|
|
"prettier --ignore-unknown --write",
|
|
|
|
"eslint --fix"
|
2024-05-17 01:22:07 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|