@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
114 lines (113 loc) • 2.63 kB
JSON
{
"name": "@lucidcms/core",
"version": "0.12.0-alpha.1",
"description": "The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.",
"type": "module",
"types": "./dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"types": "./dist/libs/cli/index.d.ts",
"default": "./dist/libs/cli/index.js"
},
"./api": {
"types": "./dist/api.d.ts",
"default": "./dist/api.js"
},
"./builders": {
"types": "./dist/builders.d.ts",
"default": "./dist/builders.js"
},
"./middleware": {
"types": "./dist/middleware.d.ts",
"default": "./dist/middleware.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"default": "./dist/helpers.js"
},
"./types": {
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc && tsdown",
"dev": "tsdown --watch --no-clean",
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"lint": "biome lint ./src",
"lint:fix": "biome lint --apply ./src"
},
"files": ["dist", "templates", "public"],
"author": "Proto Digital",
"repository": {
"type": "git",
"url": "git+https://github.com/ProtoDigitalUK/lucid_cms.git",
"directory": "packages/core"
},
"keywords": [
"CMS",
"Headless",
"Node.js",
"Typescript",
"ESM",
"Hono",
"Kysely"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@lucidcms/admin": "*",
"@lucidcms/config": "*",
"@types/lodash.merge": "^4.6.9",
"@types/mime-types": "^2.1.4",
"@types/mjml": "^4.7.4",
"@types/node": "^22.15.2",
"@types/semver": "^7.7.0",
"@types/slug": "^5.0.9",
"tsdown": "^0.12.5",
"typescript": "^5.8.3"
},
"dependencies": {
"@noble/hashes": "^1.8.0",
"@scalar/hono-api-reference": "^0.9.1",
"date-fns": "^4.1.0",
"hono": "^4.7.11",
"hono-openapi": "^0.4.8",
"kysely": "0.27.4",
"lodash.merge": "^4.6.2",
"mime-types": "^3.0.1",
"mjml": "^5.0.0-alpha.6",
"semver": "^7.7.1",
"slug": "^10.0.0",
"zod": "^3.25.67"
},
"optionalDependencies": {
"@lucidcms/admin": "0.12.0-alpha.1",
"@tailwindcss/vite": "^4.1.4",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"@inquirer/prompts": "^7.5.3",
"jiti": "^2.4.2",
"sharp": "^0.34.2",
"solid-js": "^1.9.5",
"tailwindcss": "^4.1.4",
"vite": "^6.3.5",
"vite-plugin-solid": "^2.11.6"
},
"volta": {
"node": "22.15.0"
},
"engines": {
"node": ">=22.0.0 <23.0.0"
},
"bin": {
"lucidcms": "./dist/libs/cli/index.js"
},
"license": "BSL-1.0"
}