{
  "name": "@dimjs/lang",
  "version": "2.1.1",
  "homepage": "https://gitlab.itcjf.com/flatjs-next/tool-kits",
  "repository": {
    "type": "git",
    "url": "https://gitlab.itcjf.com/flatjs-next/tool-kits",
    "directory": "packages/lang"
  },
  "license": "MIT",
  "author": {
    "name": "Yingchun Tian",
    "url": "https://gitlab.itcjf.com/tyc15129"
  },
  "sideEffects": false,
  "modularImport": true,
  "modularIgnoreDir": true,
  "modularLibraryDir": "dist",
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./index.js"
    },
    "./*": {
      "types": "./dist/index.d.ts",
      "import": "./dist/*.js"
    },
    "./dist/*": {
      "types": "./dist/index.d.ts",
      "import": "./dist/*"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "bin/",
    "dist/",
    "index.js",
    "README.md",
    "CHANGELOG.md",
    "package.json"
  ],
  "scripts": {
    "build": "npx flatjs-forge build -d -c",
    "?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
    "build-release": "yarn build && rimraf ./_release && yarn pack && mkdir ./_release && tar zxvf ./package.tgz --directory ./_release && rm ./package.tgz",
    "clean": "rimraf --no-glob ./dist ./coverage ./tsconfig.tsbuildinfo",
    "lint": "eslint . --cache --cache-location ../../.cache/eslint/lang.eslintcache",
    "test": "run-s test-unit",
    "test-unit": "vitest run --passWithNoTests",
    "test-unit-watch": "vitest watch --ui",
    "fix-all-files": "eslint . --fix",
    "typecheck": "tsc --project ./tsconfig.json --noEmit"
  },
  "devDependencies": {
    "@flatjs/cli": "2.2.7",
    "@hyperse/eslint-config-hyperse": "^1.3.5",
    "@types/node": "22.13.15",
    "eslint": "9.23.0",
    "npm-run-all": "4.1.5",
    "rimraf": "6.0.1",
    "typescript": "5.8.2",
    "vite-tsconfig-paths": "5.1.4",
    "vitest": "3.1.1"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public",
    "directory": "_release/package"
  }
}