Files
sdk/sdks/javascript/package.json
T

60 lines
1.3 KiB
JSON
Raw Normal View History

2026-05-29 12:46:42 -05:00
{
"name": "@socialhose/api",
"version": "0.1.0",
"description": "TypeScript SDK for the Socialhose Public API.",
"license": "MIT",
"author": "Socialhose",
2026-05-29 12:46:42 -05:00
"type": "module",
"sideEffects": false,
"packageManager": "pnpm@9.15.0",
"repository": {
"type": "git",
"url": "git+ssh://git@git.elzubeir.com/socialhose/sdk.git",
"directory": "sdks/javascript"
},
"homepage": "https://socialhose.net",
"files": [
"dist",
2026-05-29 13:35:09 -05:00
"docs",
"examples",
"README.md",
"LICENSE"
],
2026-05-29 12:46:42 -05:00
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=18"
},
2026-05-29 12:46:42 -05:00
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --sourcemap --clean",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run typecheck && npm run build"
2026-05-29 12:46:42 -05:00
},
"keywords": [
"socialhose",
"social-listening",
"social-media",
"public-api",
"monitoring"
],
"publishConfig": {
"access": "public",
"provenance": true
},
2026-05-29 12:46:42 -05:00
"devDependencies": {
"@types/node": "20.16.0",
"tsup": "8.3.0",
"typescript": "^5.6.2",
2026-05-29 12:46:42 -05:00
"vitest": "2.1.1"
}
}