{
  "name": "vite-plugin-worklet",
  "version": "0.0.1",
  "description": "A vite plugin to load worklet inline",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "client.d.ts"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./client": {
      "types": "./client.d.ts"
    }
  },
  "scripts": {
    "build": "tsc --module commonjs && mv dist/index.js dist/index.cjs && tsc",
    "test": "echo \"Error: no test specified\" && exit 1",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "vite-plugin",
    "worklet",
    "typescript"
  ],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@rollup/pluginutils": "^5.1.4",
    "@types/node": "^20.11.24",
    "typescript": "^5.3.3",
    "vite": "^5.1.4"
  },
  "peerDependencies": {
    "vite": "^4.0.0 || ^5.0.0"
  }
}
