This turns the project into a monorepo using pnpm workspaces, dramatically simplifying the build process. It also fixes a lot of bugs and just generally makes the codebase a lot cleaner.
25 lines
603 B
JSON
25 lines
603 B
JSON
{
|
|
"name": "example-app",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "nuxt dev",
|
|
"build": "nuxt build",
|
|
"generate": "nuxt generate",
|
|
"preview": "nuxt preview"
|
|
},
|
|
"dependencies": {
|
|
"@impost/lib": "workspace:*",
|
|
"@impost/widget": "workspace:*",
|
|
"js-toml": "^1.0.2",
|
|
"nuxt": "latest",
|
|
"nuxt-ssr-lit": "1.6.32",
|
|
"vue": "^3.5.25",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.0",
|
|
"@unocss/nuxt": "^66.5.4",
|
|
"unocss": "^66.5.4"
|
|
}
|
|
} |