{
  "name": "lua-doc-extractor",
  "version": "3.3.4",
  "description": "Extracts lua documentation from C-style comments",
  "main": "dist/src/index.js",
  "homepage": "https://github.com/rhys-vdw/lua-doc-extractor",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rhys-vdw/lua-doc-extractor.git"
  },
  "files": [
    "dist",
    "!dist/tsconfig.tsbuildinfo",
    "!dist/src/test/**/*"
  ],
  "bin": {
    "lua-doc-extractor": "dist/src/cli.js"
  },
  "scripts": {
    "cli": "tsx src/cli.ts",
    "start": "tsx src/index.ts",
    "prepare": "npm run build",
    "build": "rm -rf dist && npm run grammar && tsc --build",
    "clean": "tsc --build --clean",
    "test-clean": "rm -rf src/test/output/",
    "test-path": "npm run test-clean && npm run grammar && tape -r ./src/test/utility/register-tsx.js",
    "test-raw": "npm run test-path src/test/**/*.test.ts",
    "test-format": "tap-diff",
    "test": "npm run test-raw | npm run test-format",
    "grammar": "nearleyc src/grammar.ne -o src/grammar.ne.ts"
  },
  "author": "Rhys van der Waerden",
  "license": "MIT",
  "dependencies": {
    "command-line-args": "^6.0.1",
    "command-line-usage": "^7.0.3",
    "comment-parser": "^1.4.1",
    "dedent-js": "^1.0.1",
    "glob": "^11.0.1",
    "lodash": "^4.17.21",
    "moo": "^0.5.2",
    "nearley": "^2.20.1"
  },
  "devDependencies": {
    "@detools/tap-diff": "^0.2.2",
    "@tsconfig/node16": "^16.1.3",
    "@types/command-line-args": "^5.2.3",
    "@types/command-line-usage": "^5.0.4",
    "@types/lodash": "^4.17.13",
    "@types/moo": "^0.5.10",
    "@types/nearley": "^2.11.5",
    "@types/node": "^22.9.0",
    "@types/tape": "^5.8.1",
    "tape": "^5.9.0",
    "tsx": "^4.19.2",
    "typescript": "^5.6.3"
  }
}
