{
  "name": "rsbuild-plugin-glsl",
  "version": "1.2.0",
  "description": "Import, inline and minify GLSL, WGSL and shader chunks in Rsbuild",
  "keywords": [
    "rsbuild",
    "rspack",
    "glsl",
    "wgsl",
    "webgl",
    "webgpu",
    "shader",
    "plugin"
  ],
  "license": "MIT",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/types/esm/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/esm/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/types/cjs/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./ext": {
      "import": {
        "types": "./ext.d.ts",
        "default": "./dist/ext.js"
      },
      "require": {
        "types": "./ext.d.cts",
        "default": "./dist/ext.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "ext.d.ts",
    "ext.d.cts",
    "LICENSE",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sakitam-fdd/rsbuild-plugin-glsl.git"
  },
  "bugs": {
    "url": "https://github.com/sakitam-fdd/rsbuild-plugin-glsl/issues"
  },
  "homepage": "https://sakitam-fdd.github.io/rsbuild-plugin-glsl/",
  "author": "sakitam-fdd <smilefdd@gmail.com>",
  "scripts": {
    "build": "rslib build",
    "dev": "rslib build -w",
    "lint": "rslint src test website && prettier --check .",
    "lint:fix": "rslint --fix src test website && prettier --write .",
    "typecheck": "pnpm build && tsc --noEmit && tsc -p tsconfig.test.json --noEmit && pnpm --filter @rsbuild-plugin-glsl/website typecheck",
    "test": "pnpm build && rstest run",
    "test:watch": "rstest",
    "test:integration": "pnpm build && rstest run test/integration",
    "docs:dev": "pnpm build && pnpm --filter @rsbuild-plugin-glsl/website dev",
    "docs:build": "pnpm build && pnpm --filter @rsbuild-plugin-glsl/website build",
    "docs:preview": "pnpm --filter @rsbuild-plugin-glsl/website preview",
    "pack:check": "pnpm build && publint && attw --pack .",
    "verify": "pnpm lint && pnpm typecheck && pnpm test && pnpm pack:check && pnpm docs:build",
    "release:version": "pnpx bumpp",
    "semantic-release": "semantic-release",
    "prepublishOnly": "pnpm pack:check"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.5",
    "@rsbuild/core": "^2.1.6",
    "@rslib/core": "^0.23.2",
    "@rslint/core": "^0.7.0",
    "@rstest/core": "^0.11.2",
    "@types/node": "^24.13.3",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/release-notes-generator": "^14.1.1",
    "@semantic-release/github": "^12.0.9",
    "@semantic-release/npm": "^13.1.5",
    "jiti": "^2.7.0",
    "semantic-release": "^25.0.7",
    "prettier": "^3.9.5",
    "publint": "^0.3.21",
    "typescript": "^7.0.2"
  },
  "peerDependencies": {
    "@rsbuild/core": "^1.0.0 || ^2.0.0"
  },
  "peerDependenciesMeta": {
    "@rsbuild/core": {
      "optional": true
    }
  },
  "engines": {
    "node": "^20.19.0 || >=22.12.0",
    "pnpm": ">=11.13.1"
  },
  "packageManager": "pnpm@11.13.1",
  "publishConfig": {
    "access": "public",
    "provenance": true,
    "registry": "https://registry.npmjs.org/"
  }
}
