{
  "name": "@robinpath/core",
  "description": "RobinPath - A lightweight, fast, and easy-to-use scripting language for automation and data processing.",
  "version": "0.40.0",
  "author": "Ryan Lee <ryan@wiredwp.com>",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview",
    "push": "npm run build && npm publish --access public",
    "test": "npm run build && node test/run.js",
    "test:coverage": "npm run build && c8 node test/run.js",
    "test:coverage:report": "c8 report --reporter=html --reporter=text",
    "test:watch": "nodemon --watch src --watch test --ext ts,js,robin --exec 'npm run test'",
    "test-perform": "npm run build && node test/run-performance.js",
    "test-code": "npm run build && node test/test-code.js",
    "cli": "npm run build && node bin/robinpath.js"
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "package.json"
  ],
  "devDependencies": {
    "c8": "^10.1.3",
    "nodemon": "^3.1.9",
    "tsx": "^4.21.0",
    "typescript": "~5.9.3",
    "vite": "^7.2.4",
    "vite-plugin-dts": "^4.0.0"
  },
  "dependencies": {
    "json5": "^2.2.3"
  }
}
