-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 851 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 851 Bytes
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
{
"name": "tokenizer",
"private": true,
"workspaces": [
"packages/core",
"packages/models",
"packages/evaluation",
"apps/cli"
],
"scripts": {
"cli": "bun run apps/cli/src/index.ts",
"test": "bun test",
"test:core": "bun test --dir packages/core",
"test:models": "bun test --dir packages/models",
"test:evaluation": "bun test --dir packages/evaluation",
"test:cli": "bun test --dir apps/cli",
"check": "ultracite check",
"fix": "ultracite fix",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/bun": "latest",
"lefthook": "^2.1.5",
"lint-staged": "^16.4.0",
"typescript": "^5.0.0",
"ultracite": "7.5.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
}
}