-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 814 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 814 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
{
"name": "@gracefullight/pkgs",
"version": "0.0.0",
"private": true,
"author": {
"name": "Eunkwang Shin",
"email": "gracefullight.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gracefullight/pkgs.git"
},
"scripts": {
"build": "bun run --filter '*' build",
"lint": "biome check .",
"typecheck": "bun run --filter '*' typecheck",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@gracefullight/biome-plugin": "^0.2.2",
"tsx": "^4.21.0",
"typescript": "^6"
},
"packageManager": "bun@1.2.4",
"workspaces": [
"packages/*",
"apps/*"
]
}