-
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.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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": "root",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "bun run ./scripts/clean.ts",
"format": "bunx biome format --write",
"format:check": "bunx biome format --check",
"lint": "bunx biome lint --write",
"lint:check": "bunx biome lint --check",
"update": "bunx ncu -p bun -u -i -ws -t latest --format group"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@types/bun": "^1.2.14",
"@types/node": "^22.15.21",
"@types/semver": "^7.7.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@favware/cliff-jumper": "^6.0.0",
"@favware/npm-deprecate": "^2.0.0",
"cz-conventional-changelog": "^3.3.0",
"npm-check-updates": "^17.1.18",
"tsup": "^8.5.0",
"rimraf": "^6.0.1",
"turbo": "^2.5.3",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aether-development/utilities.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "bun@1.2.14",
"patchedDependencies": {
"@favware/cliff-jumper@6.0.0": "patches/@favware%2Fcliff-jumper@6.0.0.patch"
}
}