159 lines
3.9 KiB
JSON
159 lines
3.9 KiB
JSON
{
|
|
"name": "@zen/core",
|
|
"version": "1.3.9",
|
|
"description": "Un CMS construit sur l'essentiel, rien de plus, rien de moins.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.hyko.cx/zen/core.git"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://git.hyko.cx/api/packages/zen/npm/"
|
|
},
|
|
"license": "GPL-3.0-only",
|
|
"author": "Hyko",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup && npm run build:css",
|
|
"build:css": "mkdir -p ./dist/shared/styles && cp ./src/shared/styles/zen.css ./dist/shared/styles/zen.css",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"bin": {
|
|
"zen-db": "./dist/cli/database.js"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^2.0.0",
|
|
"@react-email/components": "^0.5.6",
|
|
"@react-pdf/renderer": "^4.3.1",
|
|
"dotenv": "^16.4.5",
|
|
"node-cron": "^3.0.3",
|
|
"pg": "^8.11.3",
|
|
"resend": "^3.2.0",
|
|
"stripe": "^14.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^6.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"next": ">=14.0.0",
|
|
"react": "^19.0.0"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./auth": {
|
|
"import": "./dist/features/auth/index.js"
|
|
},
|
|
"./auth/actions": {
|
|
"import": "./dist/features/auth/actions.js"
|
|
},
|
|
"./auth/pages": {
|
|
"import": "./dist/features/auth/pages.js"
|
|
},
|
|
"./auth/page": {
|
|
"import": "./dist/features/auth/page.js"
|
|
},
|
|
"./auth/components": {
|
|
"import": "./dist/features/auth/components/index.js"
|
|
},
|
|
"./admin": {
|
|
"import": "./dist/features/admin/index.js"
|
|
},
|
|
"./admin/actions": {
|
|
"import": "./dist/features/admin/actions.js"
|
|
},
|
|
"./admin/navigation": {
|
|
"import": "./dist/features/admin/navigation.server.js"
|
|
},
|
|
"./admin/pages": {
|
|
"import": "./dist/features/admin/pages.js"
|
|
},
|
|
"./admin/page": {
|
|
"import": "./dist/features/admin/page.js"
|
|
},
|
|
"./api": {
|
|
"import": "./dist/core/api/index.js"
|
|
},
|
|
"./zen/api": {
|
|
"import": "./dist/core/api/nx-route.js"
|
|
},
|
|
"./database": {
|
|
"import": "./dist/core/database/index.js"
|
|
},
|
|
"./storage": {
|
|
"import": "./dist/core/storage/index.js"
|
|
},
|
|
"./email": {
|
|
"import": "./dist/core/email/index.js"
|
|
},
|
|
"./email/templates": {
|
|
"import": "./dist/core/email/templates/index.js"
|
|
},
|
|
"./cron": {
|
|
"import": "./dist/core/cron/index.js"
|
|
},
|
|
"./stripe": {
|
|
"import": "./dist/core/payments/stripe.js"
|
|
},
|
|
"./payments": {
|
|
"import": "./dist/core/payments/index.js"
|
|
},
|
|
"./pdf": {
|
|
"import": "./dist/core/pdf/index.js"
|
|
},
|
|
"./toast": {
|
|
"import": "./dist/core/toast/index.js"
|
|
},
|
|
"./provider": {
|
|
"import": "./dist/features/provider/index.js"
|
|
},
|
|
"./core/modules": {
|
|
"import": "./dist/core/modules/index.js"
|
|
},
|
|
"./core/modules/client": {
|
|
"import": "./dist/core/modules/client.js"
|
|
},
|
|
"./modules": {
|
|
"import": "./dist/modules/index.js"
|
|
},
|
|
"./modules/define": {
|
|
"import": "./dist/core/modules/defineModule.js"
|
|
},
|
|
"./modules/pages": {
|
|
"import": "./dist/modules/pages.js"
|
|
},
|
|
"./modules/actions": {
|
|
"import": "./dist/modules/modules.actions.js"
|
|
},
|
|
"./modules/posts/crud": {
|
|
"import": "./dist/modules/posts/crud.js"
|
|
},
|
|
"./modules/metadata": {
|
|
"import": "./dist/modules/modules.metadata.js"
|
|
},
|
|
"./modules/page": {
|
|
"import": "./dist/modules/page.js"
|
|
},
|
|
"./lib/metadata": {
|
|
"import": "./dist/shared/lib/metadata/index.js"
|
|
},
|
|
"./components": {
|
|
"import": "./dist/shared/components/index.js"
|
|
},
|
|
"./icons": {
|
|
"import": "./dist/shared/Icons.js"
|
|
},
|
|
"./styles/zen.css": {
|
|
"default": "./dist/shared/styles/zen.css"
|
|
}
|
|
}
|
|
}
|