{
  "name": "@quanxiaoxiao/datav",
  "version": "0.7.1",
  "description": "Data transformation utility with type conversion, path access, and schema-driven data transformation",
  "type": "module",
  "keywords": [
    "data",
    "transform",
    "schema",
    "typescript",
    "type-conversion",
    "util"
  ],
  "author": "quanxiaoxiao",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/quanxiaoxiao/datav.git"
  },
  "bugs": {
    "url": "https://github.com/quanxiaoxiao/datav/issues"
  },
  "homepage": "https://github.com/quanxiaoxiao/datav#readme",
  "files": [
    "src",
    "dist",
    "package.json",
    "README.md"
  ],
  "sideEffects": false,
  "scripts": {
    "test:single": "TSX_TSCONFIG=tsconfig.test.json node --import tsx --test --test-only",
    "test": "TSX_TSCONFIG=tsconfig.test.json node --import tsx --test 'src/**/*.test.ts'",
    "test:aa": "TSX_TSCONFIG=tsconfig.test.json node --import tsx --test src/createDataAccessor.test.ts",
    "build": "tsc && rm -rf dist/*.test.* dist/**/*.test.*",
    "check": "tsc --noEmit",
    "lint": "eslint .",
    "format": "prettier --write ."
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "devDependencies": {
    "@eslint/js": "^9.22.0",
    "@types/node": "^25.0.8",
    "eslint": "^9.22.0",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "globals": "^17.0.0",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.53.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "engines": {
    "node": ">= 20.0.0"
  }
}
