-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.8 KB
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
62
63
64
65
66
67
68
69
70
{
"name": "deepagent",
"private": true,
"author": "Amardeep Lakshkar <https://amardeep.space>",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amardeeplakshkar/deepagent.git"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:web": "turbo -F web dev",
"clean": "turbo clean",
"fix": "run-s fix:*",
"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",
"release": "bumpp -r && pnpm publish -r",
"pretest": "run-s build",
"prerelease": "run-s build",
"precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks"
},
"dependencies": {},
"devDependencies": {
"@fisch0920/config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"del-cli": "catalog:",
"dotenv": "catalog:",
"eslint": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"only-allow": "catalog:",
"prettier": "catalog:",
"simple-git-hooks": "catalog:",
"syncpack": "catalog:",
"tsup": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"zod": "catalog:"
},
"prettier": "@fisch0920/config/prettier",
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
]
},
"packageManager": "pnpm@10.14.0"
}