first commit
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"name": "wrnexus",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"description": "An SSR-first full-stack web framework with server-rendered reactive components. Bun-first, Node-friendly.",
|
||||
"workspaces": [
|
||||
"packages/*",
|
||||
"examples/*"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "bun run packages/cli/src/index.ts dev examples/basic-app",
|
||||
"build": "bun run packages/cli/src/index.ts build examples/basic-app",
|
||||
"create": "bun run packages/cli/src/index.ts create",
|
||||
"example": "bun run dev",
|
||||
"test": "bun test packages",
|
||||
"test:coverage": "bun test --coverage packages",
|
||||
"security:audit": "bun audit",
|
||||
"test:db:live": "bash scripts/test-live-db.sh",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint . --fix",
|
||||
"format": "prettier . --write",
|
||||
"format:check": "prettier . --check",
|
||||
"check": "bun run typecheck && bun run lint && bun run test && bun run format:check"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "latest",
|
||||
"@types/bun": "latest",
|
||||
"eslint": "latest",
|
||||
"happy-dom": "^20.10.6",
|
||||
"prettier": "latest",
|
||||
"tsup": "^8.5.1",
|
||||
"typescript": "^5.5.0",
|
||||
"typescript-eslint": "latest"
|
||||
},
|
||||
"engines": {
|
||||
"bun": ">=1.1.0"
|
||||
},
|
||||
"overrides": {
|
||||
"esbuild": "0.28.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user