-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 934 Bytes
/
package.json
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": "tsky",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"homepage": "https://tsky.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/tsky-dev/tsky.git"
},
"scripts": {
"dev": "pnpm run --filter @tsky/core dev",
"build": "pnpm run --filter @tsky/core build",
"docs:dev": "pnpm run --filter @tsky/docs dev",
"docs:build": "pnpm run --filter @tsky/docs build",
"docs:preview": "pnpm run --filter @tsky/docs preview",
"format": "biome format",
"format:fix": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check",
"check:fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"nano-staged": "^0.8.0"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,json}": ["biome check --write --"]
}
}