{
  "name": "@devraiden/api",
  "version": "1.0.2",
  "description": "Dev Raiden multipurpose API.",
  "scripts": {
    "dev": "nodemon",
    "prod": "tsc && node .",
    "test": "npm run build && npm run test:cjs && npm run test:esm",
    "test:cjs": "mocha --timeout 20000 ./lib/cjs/**/test.js",
    "test:esm": "mocha --timeout 20000 ./lib/esm/**/test.js",
    "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types && node scripts/write-package.js",
    "build:cjs": "tsc --p src/tsconfig.cjs.json",
    "build:esm": "tsc --p src/tsconfig.esm.json",
    "build:types": "tsc --p tsconfig.types.json",
    "lint:fix": "npx eslint src/** --fix --ignore-pattern src/*.json",
    "clean": "rimraf ./lib",
    "prepare": "node scripts/compile-typescript.js"
  },
  "keywords": [
    "api",
    "discord.js",
    "free api",
    "image",
    "image api",
    "action api",
    "instagram",
    "tiktok",
    "youtube"
  ],
  "private": false,
  "author": "Dev Raiden",
  "license": "GPL-3.0-or-later",
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/node": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^5.28.0",
    "@typescript-eslint/parser": "^5.28.0",
    "dotenv": "^16.0.1",
    "eslint": "^8.18.0",
    "tslib": "^2.4.0",
    "typescript": "^4.7.4"
  },
  "dependencies": {
    "@types/mocha": "^9.1.1",
    "axios": "^0.27.2",
    "chai": "^4.3.6",
    "mocha": "^10.0.0"
  },
  "nodemonConfig": {
    "ignore": [
      "dist/*"
    ],
    "ext": "ts",
    "watch": [
      "src/*"
    ],
    "exec": "rimraf dist && tsc && node ."
  },
  "repository": {
    "url": "git://github.com/Dev-Raiden/raiden-api.git"
  },
  "bugs": {
    "url": "https://github.com/Dev-Raiden/raiden-api/issues"
  },
  "homepage": "https://github.com/Dev-Raiden/raiden-api#readme",
  "exports": {
    ".": {
      "types": "./lib/@types/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    }
  },
  "main": "./lib/cjs/index.js",
  "types": "./lib/@types/index.d.ts",
  "engines": {
    "node": ">= 16"
  },
  "directories": {
    "lib": "lib",
    "src": "src",
    "scripts": "scripts"
  },
  "files": [
    "lib/*",
    "scripts/*"
  ]
}
