-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "dx-toolkit",
"description": "Open-source toolkit enabling developers to integrate You.com's AI capabilities into their workflows",
"private": true,
"engines": {
"node": ">=18",
"bun": ">= 1.2.21"
},
"workspaces": [
"packages/*",
"plugins/*",
"scripts/*"
],
"scripts": {
"build": "bun run --filter '*' build",
"check": "bun run check:workspace-deps && bun run --filter '*' check",
"check:workspace-deps": "bash scripts/check-workspace-deps.sh",
"check:write": "bun run --filter '*' check:write",
"prepare": "git config core.hooksPath .hooks",
"test": "bun test",
"test:coverage": "bun test test:coverage"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,md}": [
"biome format --write --no-errors-on-unmatched"
],
"package.json": [
"format-package --write"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@plaited/development-skills": "0.8.1",
"@types/bun": "latest",
"format-package": "^7.0.0",
"lint-staged": "^16.2.7",
"typescript": "5.9.3",
"typescript-language-server": "5.1.3",
"zod": "^4.3.6"
}
}