{
  "name": "skills-npm",
  "type": "module",
  "version": "1.2.0",
  "description": "CLI to install agents skills that shipped with your installed npm packages",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/skills-npm#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/skills-npm.git"
  },
  "bugs": "https://github.com/antfu/skills-npm/issues",
  "keywords": [
    "agent",
    "skills",
    "ai",
    "cli",
    "cursor",
    "claude"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./cli": "./dist/cli.mjs",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "bin": {
    "skills-npm": "./dist/cli.mjs"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@clack/prompts": "^1.5.1",
    "cac": "^7.0.0",
    "gray-matter": "^4.0.3",
    "picocolors": "^1.1.1",
    "tinyglobby": "^0.2.17",
    "unconfig": "^7.5.0",
    "xdg-basedir": "^5.1.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^9.0.0",
    "@antfu/ni": "^30.1.0",
    "@antfu/utils": "^9.3.0",
    "@slidev/cli": "^52.16.0",
    "@types/node": "^25.9.3",
    "baseline-browser-mapping": "^2.10.37",
    "bumpp": "^11.1.0",
    "eslint": "^10.5.0",
    "lint-staged": "^17.0.7",
    "publint": "^0.3.21",
    "simple-git": "^3.36.0",
    "simple-git-hooks": "^2.13.1",
    "tinyexec": "^1.2.4",
    "tsdown": "^0.17.3",
    "tsx": "^4.22.4",
    "typescript": "^6.0.3",
    "vite": "^8.0.16",
    "vitest": "^4.1.9",
    "vitest-package-exports": "^1.2.0"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": "eslint --fix"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint": "eslint",
    "release": "bumpp",
    "start": "tsx src/cli.ts",
    "test": "vitest",
    "typecheck": "tsc"
  }
}