{
  "name": "dart-tools",
  "version": "0.4.14",
  "description": "The Dart TypeScript/JavaScript client",
  "keywords": [
    "dart",
    "projectmanagement",
    "taskmanagement"
  ],
  "homepage": "https://github.com/its-dart/dart-tools",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/its-dart/dart-tools-ts.git"
  },
  "bugs": "https://app.dartai.com/p/r/JFyPnhL9En61",
  "license": "MIT",
  "author": "Dart (software@dartai.com)",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "/dist",
    "/index.d.ts"
  ],
  "engines": {
    "node": ">=19.0.0"
  },
  "scripts": {
    "make-api": "./admin/make-api.sh && yarn run prettier-fix-generated",
    "start:playground:cjs": "node --env-file=.env -r ./admin/playground.cjs",
    "start:playground:esm": "node --env-file=.env --no-warnings --loader ts-node/esm ./admin/playground.mts",
    "clean": "rm -rf dist/*",
    "build": "yarn run clean && npm run build:cjs && npm run build:esm && yarn run test",
    "build:cjs": "tsc --project ./configs/tsconfig.cjs.json",
    "build:esm": "rollup --config ./configs/rollup.config.js",
    "test": "yarn run test:cjs && yarn run test:esm",
    "test:cjs": "node -e 'const { ApiError, CommentService, ConfigService, DocService, TaskService } = require(\"dart-tools\"); console.log(ApiError, CommentService, ConfigService, DocService, TaskService)'",
    "test:esm": "node --input-type=module -e 'import { ApiError, CommentService, ConfigService, DocService, TaskService } from \"dart-tools\"; console.log(ApiError, CommentService, ConfigService, DocService, TaskService)'",
    "prettier-check": "prettier --check .",
    "prettier-fix": "prettier --write . --list-different",
    "prettier-fix-generated": "prettier --write ./dart/generated",
    "req-up-all": "yarn upgrade-interactive --latest --exact --ignore-workspace-root-check",
    "release": "yarn build && release-it"
  },
  "dependencies": {
    "axios": "~1.9"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "12.3.0",
    "@types/node": "25.0.10",
    "@types/uuid": "11.0.0",
    "openapi-typescript-codegen": "0.30.0",
    "prettier": "3.8.1",
    "release-it": "19.2.4",
    "ts-node": "10.9.2",
    "typescript": "5.9.3",
    "uuid": "13.0.0",
    "vite": "7.3.1"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
