mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
6c7dcfa923
* refactor: restructure examples folder to support multiple apps - Move current examples app to examples/calcom - Update workspace configuration to include apps/examples/* - Rename package from 'examples' to '@examples/calcom' This allows the examples folder to contain multiple different example apps. Co-Authored-By: pasquale@cal.com <pasquale@cal.com> * mc --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: pasquale@cal.com <pasquale@cal.com> Co-authored-by: pasqualevitiello <pasqualevitiello@gmail.com>
34 lines
820 B
JSON
34 lines
820 B
JSON
{
|
|
"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/*"
|
|
]
|
|
}
|