{
  "name": "@ammolite/compiler",
  "version": "0.1.5",
  "description": "A CSS-in-JS compiler",
  "keywords": [
    "ammolite",
    "css",
    "css-in-js",
    "compiler",
    "ts",
    "typescript",
    "js",
    "javascript"
  ],
  "homepage": "https://gemvale.github.io",
  "bugs": "https://github.com/gemvale/ammolite/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/gemvale/ammolite.git",
    "directory": "packages/compiler"
  },
  "license": "MIT",
  "author": {
    "name": "Alpheus",
    "email": "contact@alphe.us"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./ast/parse": {
      "types": "./dist/ast/parse.d.ts",
      "import": "./dist/ast/parse.mjs",
      "require": "./dist/ast/parse.js"
    },
    "./ast/codegen": {
      "types": "./dist/ast/codegen.d.ts",
      "import": "./dist/ast/codegen.mjs",
      "require": "./dist/ast/codegen.js"
    },
    "./contexts/compiler": {
      "types": "./dist/contexts/compiler.d.ts",
      "import": "./dist/contexts/compiler.mjs",
      "require": "./dist/contexts/compiler.js"
    },
    "./errors/compile": {
      "types": "./dist/errors/compile/index.d.ts",
      "import": "./dist/errors/compile/index.mjs",
      "require": "./dist/errors/compile/index.js"
    },
    "./collector": {
      "types": "./dist/modules/collector/index.d.ts",
      "import": "./dist/modules/collector/index.mjs",
      "require": "./dist/modules/collector/index.js"
    },
    "./preprocessor": {
      "types": "./dist/modules/preprocessor/index.d.ts",
      "import": "./dist/modules/preprocessor/index.mjs",
      "require": "./dist/modules/preprocessor/index.js"
    },
    "./bundler": {
      "types": "./dist/modules/bundler/index.d.ts",
      "import": "./dist/modules/bundler/index.mjs",
      "require": "./dist/modules/bundler/index.js"
    },
    "./processor": {
      "types": "./dist/modules/processor/index.d.ts",
      "import": "./dist/modules/processor/index.mjs",
      "require": "./dist/modules/processor/index.js"
    },
    "./processor/css": {
      "types": "./dist/modules/processor/css.d.ts",
      "import": "./dist/modules/processor/css.mjs",
      "require": "./dist/modules/processor/css.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "es-toolkit": "^1.40.0",
    "esrap": "^2.2.0",
    "fdir": "^6.5.0",
    "oxc-parser": "~0.135.0",
    "rolldown": "^1.0.0",
    "rollup-plugin-tsconfig-paths": "^1.5.2",
    "ts-vista": "~0.2.3"
  }
}