{
  "name": "@pierre/theme",
  "displayName": "Pierre Theme",
  "description": "Pierre theme for Shiki, VS Code, and more",
  "version": "0.0.28",
  "publisher": "pierrecomputer",
  "icon": "icon.png",
  "galleryBanner": {
    "color": "#141415",
    "theme": "dark"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/pierrecomputer/theme"
  },
  "bugs": {
    "url": "https://github.com/pierrecomputer/theme/issues"
  },
  "engines": {
    "vscode": "^1.0.0"
  },
  "categories": [
    "Themes"
  ],
  "keywords": [
    "theme",
    "pierre",
    "light",
    "dark"
  ],
  "contributes": {
    "themes": [
      {
        "label": "Pierre Light",
        "uiTheme": "vs",
        "path": "./themes/pierre-light.json"
      },
      {
        "label": "Pierre Dark",
        "uiTheme": "vs-dark",
        "path": "./themes/pierre-dark.json"
      }
    ]
  },
  "scripts": {
    "build": "ts-node src/build.ts",
    "test": "npm run build && ts-node src/test.ts",
    "start": "nodemon --watch src --ext ts --exec npm run build",
    "package": "ts-node src/package-vsix.ts",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@vscode/vsce": "^3.2.2",
    "nodemon": "^3.1.11",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "themes",
    "icon.png"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./pierre-dark": {
      "types": "./dist/pierre-dark.d.mts",
      "default": "./dist/pierre-dark.mjs"
    },
    "./pierre-light": {
      "types": "./dist/pierre-light.d.mts",
      "default": "./dist/pierre-light.mjs"
    },
    "./pierre-dark-vibrant": {
      "types": "./dist/pierre-dark-vibrant.d.mts",
      "default": "./dist/pierre-dark-vibrant.mjs"
    },
    "./pierre-light-vibrant": {
      "types": "./dist/pierre-light-vibrant.d.mts",
      "default": "./dist/pierre-light-vibrant.mjs"
    },
    "./themes/*": "./themes/*"
  },
  "publishConfig": {
    "access": "public"
  }
}
