chore: import codes
This commit is contained in:
+172
@@ -0,0 +1,172 @@
|
||||
{
|
||||
"name": "@hykocx/zen",
|
||||
"version": "1.3.0",
|
||||
"description": "Un CMS construit sur l'essentiel, rien de plus, rien de moins.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.hyko.cx/hykocx/zen.git"
|
||||
},
|
||||
"publishConfig": {
|
||||
"registry": "https://git.hyko.cx/api/packages/hykocx/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/core/database/cli.js",
|
||||
"zen-setup": "./dist/features/setup/cli.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",
|
||||
"react-email": "^4.3.0",
|
||||
"react-grid-layout": "^1.5.2",
|
||||
"resend": "^3.2.0",
|
||||
"stripe": "^14.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/cli": "^4.2.1",
|
||||
"@tailwindcss/postcss": "^4",
|
||||
"autoprefixer": "^10.4.0",
|
||||
"postcss": "^8.4.0",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"tailwindcss": "^4",
|
||||
"tsup": "^8.0.0",
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"./setup": {
|
||||
"import": "./dist/features/setup/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/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"
|
||||
},
|
||||
"./invoice/dashboard": {
|
||||
"import": "./dist/modules/invoice/dashboard/index.js"
|
||||
},
|
||||
"./nuage/dashboard": {
|
||||
"import": "./dist/modules/nuage/dashboard/index.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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user