-
Notifications
You must be signed in to change notification settings - Fork 473
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 879 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 879 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
{
"dependencies": {
"react-day-picker": "^9.13.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.6",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"turbo": "^2.6.1",
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3.1"
},
"license": "AGPL-3.0-or-later",
"name": "cosscom",
"packageManager": "bun@1.3.1",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf .turbo && rm -rf node_modules",
"dev": "turbo run dev",
"format": "biome format --write .",
"format:all": "biome check --write --unsafe --no-errors-on-unmatched",
"lint": "turbo run lint --",
"prepare": "husky",
"test": "bun test --pass-with-no-tests",
"typecheck": "turbo run typecheck"
},
"version": "0.0.1",
"workspaces": [
"apps/*",
"apps/examples/*",
"packages/*"
]
}