@oberoncms/core
Version:
OberonCMS is a cloud deployable CMS written in typescript based on the Puck visual editor
86 lines • 2.11 kB
JSON
{
"name": "@oberoncms/core",
"version": "0.19.1",
"author": "Tohuhono ltd",
"license": "MIT",
"description": "OberonCMS is a cloud deployable CMS written in typescript based on the Puck visual editor",
"keywords": [
"oberon",
"oberoncms",
"cms",
"puck",
"nextjs",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/Tohuhono/Oberon",
"directory": "packages/oberoncms/core"
},
"type": "module",
"files": [
"dist",
"src",
"tailwind.css",
"CHANGELOG*",
"README*",
"LICENSE*"
],
"exports": {
".": "./dist/index.js",
"./auth": "./dist/auth.js",
"./auth/client": "./dist/auth/client.js",
"./auth/server": "./dist/auth/server.js",
"./adapter": "./dist/adapter.js",
"./render": "./dist/render.js",
"./editor": "./dist/editor.js",
"./provider": "./dist/provider.js",
"./tailwind.css": "./tailwind.css"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@puckeditor/core": "^0.21.1",
"better-auth": "^1.6.3",
"dotenv": "^17.3.1",
"filesize": "^11.0.13",
"next": "^16.1.6",
"react-hook-form": "^7.71.1",
"swr": "^2.4.0",
"use-debounce": "^10.1.0",
"walkjs": "^6.0.1",
"zod": "^4.3.6",
"@tohuhono/ui": "0.16.0",
"@tohuhono/utils": "0.16.0"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "24.10.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "5.9.3",
"@dev/eslint": "0.2.0",
"@dev/scripts": "0.2.0",
"@dev/typescript": "0.2.0",
"@dev/vite": "0.2.0",
"@dev/vitest": "0.2.0"
},
"scripts": {
"build": "vite build",
"clean": "odt clean",
"dev": "vite build --watch",
"wait": "wait-on ./dist/version && echo done",
"wait:clean": "rimraf ./dist/version",
"lint": "eslint .",
"test:unit": "vitest run",
"test:watch": "vitest",
"tsc": "tsc --pretty"
}
}