{
  "name": "@lunoxjs/core",
  "version": "2.0.0-next",
  "description": "Laravel-Flavoured NodeJs framework",
  "bin": {
    "lunox": "./bin/lunox.cjs"
  },
  "main": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": "./dist/index.mjs",
    "./dist/*": "./dist/*",
    "./build": "./dist/build/index.mjs",
    "./helpers": "./dist/helpers.mjs"
  },
  "files": [
    "dist/*",
    "global.d.ts",
    "build.d.ts",
    "stub/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kodepandai/lunox-framework.git"
  },
  "keywords": [
    "laravel",
    "nodejs",
    "lunox",
    "lunoxjs",
    "polka",
    "svelte",
    "mvc"
  ],
  "author": {
    "name": "Akhmad Salafudin",
    "email": "axmad386@gmail.com",
    "url": "https://github.com/axmad386"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kodepandai/lunox-framework/issues"
  },
  "homepage": "https://github.com/kodepandai/lunox-framework#readme",
  "dependencies": {
    "@kodepandai/flydrive": "^2.0.1",
    "@kodepandai/node-input-validator": "^1.0.0-beta",
    "colorette": "^2.0.16",
    "commander": "^9.2.0",
    "cookie": "0.4.1",
    "dotenv": "^10.0.0",
    "express-session": "^1.17.2",
    "formidable": "^2.0.1",
    "hash-equals": "^0.0.5",
    "pluralize": "^8.0.0",
    "polka": "^1.0.0-next.22",
    "sirv": "^1.0.18"
  },
  "devDependencies": {
    "@kodepandai/flydrive-s3": "^2.1.1",
    "@lunoxjs/build": "^2.0.0-next",
    "@types/bcryptjs": "^2.4.2",
    "@types/cookie": "^0.4.1",
    "@types/cors": "^2.8.12",
    "@types/express-session": "^1.17.4",
    "@types/formidable": "^2.0.0",
    "@types/jest": "^27.4.1",
    "@types/node": "^16.11.7",
    "@types/pluralize": "^0.0.29",
    "@types/polka": "^0.5.3",
    "@types/react": "^18.0.9",
    "@types/react-dom": "^18.0.4",
    "@types/react-helmet": "^6.1.5",
    "@types/supertest": "^2.0.12",
    "@typescript-eslint/eslint-plugin": "^5.3.1",
    "@typescript-eslint/parser": "^5.3.1",
    "bcryptjs": "^2.4.3",
    "eslint": "^8.17.0",
    "glob": "^9.2.1",
    "jest": "^28.1.3",
    "mysql": "^2.18.1",
    "nodemon": "^2.0.15",
    "prettier": "^2.6.2",
    "react": "^18.1.0",
    "react-dom": "^18.1.0",
    "react-helmet": "^6.1.0",
    "rollup": "^3.19.1",
    "session-file-store": "^1.5.0",
    "sqlite3": "^5.0.3",
    "supertest": "^6.2.4",
    "svelte": "^3.46.6",
    "trouter": "^3.2.1",
    "ts-jest": "^28.0.7",
    "tslib": "^2.3.1",
    "typescript": "^4.9.5",
    "vite": "^2.9.9"
  },
  "type": "module",
  "scripts": {
    "build": "npm run clean && node build-fixer.mjs build && npm run fix",
    "fix": "node build-fixer.mjs fix",
    "clean": "node build-fixer.mjs clean",
    "dev": "rollup -cw & nodemon -q -w dist dist/index.js",
    "lint": "prettier --check --plugin-search-dir=. . && eslint .",
    "prettier": "prettier --write --plugin-search-dir=. .",
    "format": "npm run prettier && npm run lint",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --verbose"
  }
}