{
  "name": "@mlightcad/mtext-parser",
  "version": "1.5.0",
  "description": "AutoCAD MText parser written in TypeScript",
  "type": "module",
  "main": "dist/parser.js",
  "module": "dist/parser.js",
  "types": "dist/types/parser.d.ts",
  "author": "MLight Lee <mlight.lee@outlook.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/mlightcad/mtext-parser"
  },
  "homepage": "https://github.com/mlightcad/mtext-parser",
  "keywords": [
    "autocad",
    "dxf",
    "mtext",
    "parser"
  ],
  "license": "MIT",
  "files": [
    "dist",
    "src",
    "README.md",
    "package.json"
  ],
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^20.11.24",
    "@typescript-eslint/eslint-plugin": "^8.57.0",
    "@typescript-eslint/parser": "^8.57.0",
    "eslint": "^9.26.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.4.0",
    "jest": "^29.7.0",
    "prettier": "^3.2.5",
    "ts-jest": "^29.3.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
    "lint": "eslint ./src --ext .ts",
    "lint:fix": "eslint ./src --ext .ts --fix",
    "release": "node tools/release.mjs",
    "test": "jest"
  }
}