feat: Initial WordPress project

This commit is contained in:
2026-03-18 08:06:28 -04:00
commit 22cdda7fbf
40 changed files with 8903 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
{
"name": "@lewebsimple/headless",
"version": "0.1.0",
"private": true,
"description": "Headless WordPress theme based on Nuxt.",
"type": "module",
"scripts": {
"build": "pnpm --sequential /build:.*/",
"build:nuxt": "nuxt build",
"dev": "nuxt dev",
"format": "oxfmt .",
"lint": "oxlint . --fix",
"preview": "nuxt preview",
"postinstall": "pnpm --sequential /postinstall:.*/",
"postinstall:nuxt": "nuxt prepare",
"release": "oxlint . && oxfmt --check . && nuxt typecheck && changelogen --noAuthors --release --push"
},
"dependencies": {
"nuxt": "^4.4.2",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
},
"devDependencies": {
"changelogen": "^0.6.2",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3",
"vue-tsc": "^3.2.6"
},
"pnpm": {
"overrides": {
"@tiptap/core": "3.14.0",
"@tiptap/pm": "3.14.0"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"unrs-resolver",
"vue-demi",
"workerd"
]
},
"changelog": {
"types": {
"chore": false
}
}
}