{
  "name": "octicons-js",
  "version": "2.0.2",
  "description": "Super simple GitHub Octicon usage in JavaScript. Supports ES modules, CommonJS, and TypeScript.",
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.esm.js",
      "require": "./dist/index.cjs.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "rollup -c rollup.config.mjs",
    "dev": "rollup -c rollup.config.mjs -w",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "octicons",
    "icons",
    "svg",
    "vanilla-js",
    "tree-shaking",
    "github",
    "components"
  ],
  "author": "grayc4",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/grayc4/octicons-js.git"
  },
  "bugs": {
    "url": "https://github.com/grayc4/octicons-js/issues"
  },
  "homepage": "https://github.com/grayc4/octicons-js#readme",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^15.0.0",
    "rollup": "^3.0.0"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=14.0.0"
  }
}