Raises the typescript devDependency across the workspace, bumps package versions, re-adds ignoreDeprecations, and repoints the @wrnexus registry. These were pre-existing working-tree changes, committed as-is rather than authored here. The .npmrc change redirects @wrnexus publishes from registry.npmjs.org to registry.workroot.in — confirm that is intended before publishing from this branch. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"name": "basic-app",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run ../../packages/cli/src/index.ts dev .",
|
|
"build": "bun run ../../packages/cli/src/index.ts build .",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier . --write",
|
|
"format:check": "prettier . --check",
|
|
"test": "bun run ../../packages/cli/src/index.ts test .",
|
|
"check": "bun run typecheck && bun run lint && bun run format:check"
|
|
},
|
|
"dependencies": {
|
|
"@wrnexus/core": "workspace:*",
|
|
"@wrnexus/validation": "workspace:*",
|
|
"@wrnexus/db": "workspace:*",
|
|
"@wrnexus/ui": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@wrnexus/test": "workspace:*",
|
|
"@eslint/js": "^10.0.1",
|
|
"@iconify-json/lucide": "^1.2.123",
|
|
"@iconify/tailwind4": "^1.2.3",
|
|
"@tailwindcss/cli": "^4.3.3",
|
|
"eslint": "^10.8.1",
|
|
"prettier": "^3.9.6",
|
|
"tailwindcss": "^4.3.3",
|
|
"typescript-eslint": "^8.67.0"
|
|
}
|
|
}
|