{
  "name": "apithreads",
  "version": "1.0.5",
  "description": "Unofficial, Reverse-Engineered Node.js/TypeScript client for Meta's [Threads](https://threads.net).",
  "author": "Viraj Bhartiya <virajbhartiya.github.io>",
  "homepage": "https://virajbhartiya.github.io/projects/apithreads.html",
  "repository": "virajbhartiya/apithreads",
  "license": "MIT",
  "type": "commonjs",
  "source": "./src/index.ts",
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.js",
      "default": "./build/index.js"
    }
  },
  "bin": "./bin/cli.js",
  "engines": {
    "node": ">=14"
  },
  "files": [
    "build"
  ],
  "scripts": {
    "build": "rm -rf ./lib && swc src --config-file .swcrc -d build && tsc --emitDeclarationOnly",
    "buildwin": "npx rimraf ./lib && swc src --config-file .swcrc -d build && tsc --emitDeclarationOnly",
    "dev": "yarn build && node build/test",
    "test": "jest"
  },
  "devDependencies": {
    "@babel/core": "^7.22.8",
    "@babel/preset-env": "^7.22.7",
    "@types/jest": "^29.5.2",
    "@types/mime-types": "^2.1.1",
    "@types/node": "^20.4.0",
    "@types/uuid": "^9.0.2",
    "babel-jest": "^29.6.1",
    "commander": "^11.0.0",
    "dotenv": "^16.3.1",
    "jest": "^29.6.1",
    "ts-jest": "^29.1.1",
    "tslib": "^2.6.0",
    "typescript": "^5.1.6"
  },
  "dependencies": {
    "@swc/cli": "^0.1.62",
    "@swc/core": "^1.3.68",
    "axios": "^1.4.0",
    "mime-types": "^2.1.35",
    "uuid": "^9.0.0"
  },
  "keywords": [
    "threads",
    "instagram",
    "facebook",
    "meta",
    "api",
    "threads-api"
  ]
}