{
  "name": "@zhengxs/dingtalk-auth",
  "version": "0.1.0",
  "description": "The Non-official TypeScript library for the DingTalk Open API",
  "keywords": [
    "dingtalk",
    "auth"
  ],
  "homepage": "https://github.com/zhengxs2018/dingtalk-sdk-for-js#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/zhengxs2018/dingtalk-sdk-for-js",
    "directory": "packages/dingtalk-auth"
  },
  "bugs": {
    "url": "https://github.com/zhengxs2018/dingtalk-sdk-for-js/issues"
  },
  "author": "zhengxs <zhengxs2018@gmail.com>",
  "license": "MIT",
  "sideEffect": false,
  "type": "commonjs",
  "main": "./index.js",
  "types": "./index.d.ts",
  "imports": {
    "@zhengxs/dingtalk-auth": ".",
    "@zhengxs/dingtalk-auth/*": "./src/*"
  },
  "exports": {
    ".": {
      "require": {
        "types": "./index.d.ts",
        "default": "./index.js"
      },
      "types": "./index.d.mts",
      "default": "./index.mjs"
    },
    "./*.mjs": {
      "types": "./*.d.ts",
      "default": "./*.mjs"
    },
    "./*.js": {
      "types": "./*.d.ts",
      "default": "./*.js"
    },
    "./*": {
      "types": "./*.d.ts",
      "require": "./*.js",
      "default": "./*.mjs"
    }
  },
  "files": [
    "*"
  ],
  "private": false,
  "publishConfig": {
    "directory": "dist",
    "registry": "https://registry.npmjs.org"
  },
  "dependencies": {
    "@zhengxs/http": "^0.0.1-rc.6"
  },
  "scripts": {
    "build": "vite build",
    "watch": "vite build --watch --mode development"
  }
}