mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
## Description Attempts to fix the build issue (again) where the non-variable fonts from font-source are throwing `Missing "./*00.css" specifier in "@fontsource/geist-*` while building or developing locally... like damn! ## Related Issues <!-- List any related issues (e.g., "Closes #123", "Fixes #456") --> ## Type of Change - [x] Bug fix (non-breaking change) - [ ] New feature (non-breaking change) - [ ] Breaking change (fix or feature that changes existing functionality) - [ ] Documentation update - [ ] Other (please describe): ## Checklist - [x] I have updated relevant documentation - [x] My code follows the project's coding style - [ ] My changes generate no new warnings/errors
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"name": "@nestri/web",
|
|
"description": "Your games. Your rules.",
|
|
"engines": {
|
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
},
|
|
"engines-annotation": "Mostly required by sharp which needs a Node-API v9 compatible runtime",
|
|
"private": true,
|
|
"trustedDependencies": [
|
|
"sharp"
|
|
],
|
|
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "qwik build",
|
|
"build.client": "vite build",
|
|
"build.preview": "vite build --ssr src/entry.preview.tsx",
|
|
"build.server": "vite build -c adapters/cloudflare-pages/vite.config.ts",
|
|
"deno:build.server": "vite build -c adapters/deno/vite.config.ts",
|
|
"build.types": "tsc --incremental --noEmit",
|
|
"deploy": "wrangler pages deploy ./dist",
|
|
"dev": "vite --mode ssr",
|
|
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
|
|
"fmt": "prettier --write .",
|
|
"fmt.check": "prettier --check .",
|
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
"preview": "qwik build preview && vite preview --open",
|
|
"serve": "wrangler pages dev ./dist --compatibility-flags=nodejs_als",
|
|
"deno:serve": "deno run --allow-net --allow-read --allow-env server/entry.deno.js",
|
|
"start": "vite --open --mode ssr",
|
|
"qwik": "qwik"
|
|
},
|
|
"devDependencies": {
|
|
"@builder.io/partytown": "^0.8.1",
|
|
"@builder.io/qwik": "^1.8.0",
|
|
"@builder.io/qwik-city": "^1.8.0",
|
|
"@builder.io/qwik-react": "0.5.0",
|
|
"@fontsource-variable/bricolage-grotesque": "^5.0.1",
|
|
"@fontsource/geist-mono": "^5.1.0",
|
|
"@fontsource/geist-sans": "^5.1.0",
|
|
"@fontsource-variable/mona-sans": "^5.0.1",
|
|
"@modular-forms/qwik": "^0.29.0",
|
|
"@nestri/input": "*",
|
|
"@nestri/libmoq": "*",
|
|
"@nestri/sdk": "0.1.0-alpha.14",
|
|
"@nestri/ui": "*",
|
|
"@openauthjs/openauth": "^0.2.6",
|
|
"@polar-sh/checkout": "^0.1.8",
|
|
"@polar-sh/sdk": "^0.21.1",
|
|
"@qwik-ui/headless": "^0.6.4",
|
|
"@types/eslint": "8.56.10",
|
|
"@types/howler": "^2.2.12",
|
|
"@types/node": "^22.5.1",
|
|
"@types/react": "^18.2.28",
|
|
"@types/react-dom": "^18.2.13",
|
|
"@typescript-eslint/eslint-plugin": "7.16.1",
|
|
"@typescript-eslint/parser": "7.16.1",
|
|
"ajv": "^8.17.1",
|
|
"eslint": "8.57.0",
|
|
"eslint-plugin-qwik": "^1.8.0",
|
|
"howler": "^2.2.4",
|
|
"posthog-js": "^1.207.0",
|
|
"prettier": "3.3.3",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"semver": "^7.7.1",
|
|
"typescript": "5.4.5",
|
|
"undici": "*",
|
|
"valibot": "^0.42.1",
|
|
"vite": "5.4.12",
|
|
"vite-tsconfig-paths": "^4.2.1",
|
|
"wrangler": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/pako": "^2.0.3",
|
|
"pako": "^2.1.0"
|
|
}
|
|
}
|