Initial commit for ArtRag

This commit is contained in:
2025-11-12 16:12:56 +01:00
commit db045807b1
13 changed files with 2844 additions and 0 deletions

43
package.json Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "artrag",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "npx nuxthub preview",
"deploy": "npx nuxthub deploy",
"postinstall": "nuxt prepare",
"lint": "eslint ."
},
"dependencies": {
"@nuxt/content": "3.8.0",
"@nuxt/eslint": "^1.4.1",
"@nuxthub/core": "^0.9.0",
"better-sqlite3": "^12.4.1",
"nuxt": "^3.17.5",
"vue": "^3.5.16",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.4.1",
"eslint": "^9.29.0",
"typescript": "^5.8.3",
"vue-tsc": "^2.2.10",
"wrangler": "^4.20.1"
},
"packageManager": "pnpm@10.12.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"unrs-resolver",
"workerd"
],
"ignoredBuiltDependencies": [
"better-sqlite3"
]
}
}