osintcat
Version:
Official JavaScript/TypeScript SDK for OsintCat - the fast, private, and simple OSINT platform for investigations
79 lines (78 loc) • 1.84 kB
JSON
{
"name": "osintcat",
"version": "1.1.1",
"description": "Official JavaScript/TypeScript SDK for OsintCat - the fast, private, and simple OSINT platform for investigations",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"default": "./dist/index.cjs"
}
},
"files": [
"dist",
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"clean": "rimraf dist coverage",
"clean:results": "rimraf results",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"osint",
"investigation",
"api-client",
"osintcat",
"intelligence",
"data-collection",
"breach-search",
"discord",
"reddit",
"github",
"security",
"osint-tools",
"typescript",
"javascript",
"sdk",
"api"
],
"author": "OsintCat Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/osintcat-docs/osintcat.js.git"
},
"bugs": {
"url": "https://github.com/osintcat-docs/osintcat.js/issues"
},
"homepage": "https://www.osintcat.net",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tsup": "^8.5.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}