-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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": "cube-records",
"version": "0.9.1",
"private": true,
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:cli": "pnpm -F ./packages/codegen dev:cli",
"typecheck": "turbo run typecheck",
"format": "pnpm ultracite format --unsafe",
"lint": "pnpm exec ultracite lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"commit": "cz",
"prepare": "husky"
},
"author": "Aliou Diallo <code@general-dexterity.com>",
"license": "MIT",
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"turbo": "^2.5.4",
"typescript": "^5.6.0",
"ultracite": "5.0.32"
},
"pnpm": {
"overrides": {
"@biomejs/biome": "^2.0.0",
"vitest": "^3.1.3"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}