This commit is contained in:
Rahim
2025-09-22 23:39:30 +10:00
parent d3221ec211
commit d2b2dd4868
132 changed files with 860 additions and 969 deletions
+10 -6
View File
@@ -11,19 +11,23 @@
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:libs": "turbo run build --filter=!./examples/*",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"dev:html": "turbo run dev --filter=html-demo...",
"dev:react": "turbo run dev --filter=react-demo..."
"dev:react": "turbo run dev --filter=react-demo...",
"dev": "turbo run dev --parallel",
"format:check": "prettier . --check --log-level warn --cache",
"format": "prettier . --write --log-level warn --cache",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"prettier": "^3.6.2",
"react": "^18.0.0",
"tsup": "^8.0.0",
"turbo": "^2.5.5",