-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 843 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 843 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
35
36
37
38
39
{
"name": "@snelusha/noto",
"version": "0.0.0",
"license": "MIT",
"packageManager": "bun@1.3.8",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"clean:workspaces": "turbo clean",
"clean": "git clean -xdf node_modules",
"format": "biome format --write"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@biomejs/biome": "2.4.13",
"@types/bun": "^1.3.8",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"semver": "^7.7.3",
"typescript": "^6.0.2",
"zod": "^4.3.6"
}
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"semver": "^7.7.4",
"turbo": "^2.9.6",
"typescript": "^6.0.3"
},
"overrides": {
"@types/bun": "catalog:"
}
}