-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
61 lines (61 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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@9.12.2",
"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.27.10",
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.9.1",
"del-cli": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.0",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"turbo": "^2.3.0",
"typescript": "^5.6.3",
"vitest": "2.1.5",
"zod": "^3.23.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
]
}
}