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
|
|
|
},
|
2024-07-24 10:05:40 +00:00
|
|
|
"packageManager": "pnpm@9.6.0",
|
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",
|
|
|
|
|
"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",
|
2024-08-04 11:35:16 +00:00
|
|
|
"changeset": "changeset",
|
|
|
|
|
"release": "run-s build changeset publish",
|
|
|
|
|
"release:build": "run-s build",
|
|
|
|
|
"release:version": "changeset version",
|
|
|
|
|
"release:publish": "changeset publish",
|
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": {
|
2024-08-04 11:35:16 +00:00
|
|
|
"@changesets/cli": "^2.27.7",
|
2024-07-01 06:13:22 +00:00
|
|
|
"@fisch0920/eslint-config": "^1.4.0",
|
2024-05-17 01:22:07 +00:00
|
|
|
"@total-typescript/ts-reset": "^0.5.1",
|
2024-08-04 09:12:25 +00:00
|
|
|
"@types/node": "^22.1.0",
|
2024-05-17 01:22:07 +00:00
|
|
|
"del-cli": "^5.1.0",
|
2024-08-04 06:32:30 +00:00
|
|
|
"dotenv": "^16.4.5",
|
2024-05-17 01:22:07 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-07-30 09:29:34 +00:00
|
|
|
"husky": "^9.1.4",
|
2024-08-04 09:12:25 +00:00
|
|
|
"lint-staged": "^15.2.8",
|
2024-07-12 01:34:42 +00:00
|
|
|
"npm-run-all2": "^6.2.2",
|
2024-05-24 23:55:26 +00:00
|
|
|
"only-allow": "^1.2.1",
|
2024-07-15 23:57:03 +00:00
|
|
|
"prettier": "^3.3.3",
|
2024-08-04 09:12:25 +00:00
|
|
|
"tsup": "^8.2.4",
|
|
|
|
|
"tsx": "^4.16.5",
|
2024-08-04 03:14:21 +00:00
|
|
|
"turbo": "^2.0.11",
|
2024-07-24 10:06:59 +00:00
|
|
|
"typescript": "^5.5.4",
|
2024-08-04 09:12:25 +00:00
|
|
|
"vitest": "2.0.5",
|
|
|
|
|
"zod": "^3.23.8"
|
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
|
|
|
]
|
2024-08-04 11:04:31 +00:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"overrides": {
|
|
|
|
|
"esbuild": "^0.23.0"
|
|
|
|
|
}
|
2024-05-17 01:22:07 +00:00
|
|
|
}
|
|
|
|
|
}
|