{
  "name": "@mdsfe/toolkit",
  "version": "0.1.0",
  "description": "A lightweight, modular TypeScript utility library for browser-friendly app development.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "author": "mdsfe",
  "homepage": "https://gitee.com/mdsfe/toolkit#readme",
  "bugs": {
    "url": "https://gitee.com/mdsfe/toolkit/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitee.com/mdsfe/toolkit.git"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "README.zh-CN.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "release:check": "npm run clean && npm run build && npm pack --dry-run",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/browser/index.d.ts",
      "import": "./dist/browser/index.js"
    },
    "./format": {
      "types": "./dist/format/index.d.ts",
      "import": "./dist/format/index.js"
    },
    "./function": {
      "types": "./dist/function/index.d.ts",
      "import": "./dist/function/index.js"
    },
    "./object": {
      "types": "./dist/object/index.d.ts",
      "import": "./dist/object/index.js"
    },
    "./string": {
      "types": "./dist/string/index.d.ts",
      "import": "./dist/string/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/types/index.js"
    },
    "./validation": {
      "types": "./dist/validation/index.d.ts",
      "import": "./dist/validation/index.js"
    }
  },
  "keywords": [
    "mdsfe",
    "toolkit",
    "typescript",
    "javascript",
    "utils",
    "browser",
    "functional",
    "validation",
    "formatting"
  ],
  "license": "MIT",
  "private": false,
  "devDependencies": {
    "typescript": "^5.5.4"
  }
}
