{
  "name": "specificity",
  "version": "1.0.0",
  "description": "Calculate the specificity of a CSS selector",
  "keywords": [
    "CSS",
    "specificity"
  ],
  "homepage": "https://github.com/keeganstreet/specificity",
  "author": {
    "name": "Keegan Street",
    "url": "http://keegan.st"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/keeganstreet/specificity.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/keeganstreet/specificity/issues"
  },
  "type": "module",
  "module": "./dist/esm/index.js",
  "main": "./dist/cjs/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "prebuild": "rm -rf ./dist",
    "build": "tsc -b ./tsconfig.json ./tsconfig.cjs.json && cp package-cjs.json dist/cjs/package.json",
    "test": "jest && node test/test-esm.mjs && node test/test-cjs.cjs"
  },
  "devDependencies": {
    "@jest/globals": "^29.5.0",
    "@types/css-tree": "^2.3.1",
    "jest": "^29.5.0",
    "prettier": "^2.8.8",
    "ts-jest": "^29.1.0",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "css-tree": "^2.3.1"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ]
}
