@nekofar/warpcast
Version:
TypeScript client for interacting with Warpcast APIs
77 lines • 2.23 kB
JSON
{
"name": "@nekofar/warpcast",
"version": "2.0.0-alpha.56",
"description": "TypeScript client for interacting with Warpcast APIs",
"keywords": [
"warpcast",
"farcaster"
],
"homepage": "https://github.com/nekofar/warpcast#readme",
"bugs": {
"url": "https://github.com/nekofar/warpcast/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nekofar/warpcast.git"
},
"license": "Apache-2.0",
"author": {
"name": "Milad Nekofar",
"email": "milad@nekofar.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@asyncapi/cli": "^3.2.0",
"@asyncapi/generator": "^2.7.1",
"@biomejs/biome": "^2.1.2",
"@hey-api/openapi-ts": "^0.80.1",
"@redocly/cli": "^2.0.2",
"@types/node": "^24.1.0",
"globals": "^16.3.0",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"zod": "^4.0.10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "pnpm clean && pnpm openapi:lint && pnpm openapi:bundle && pnpm openapi:generate",
"build": "tsup",
"clean": "rimraf dist openapi.json",
"docs": "typedoc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"openapi:bundle": "redocly bundle openapi/index.yaml --output openapi.json",
"openapi:generate": "openapi-ts",
"openapi:lint": "redocly lint openapi/index.yaml",
"asyncapi:bundle": "asyncapi bundle asyncapi/index.yaml --output asyncapi.json",
"asyncapi:generate": "asyncapi generate fromTemplate asyncapi/index.yaml @asyncapi/nodejs-ws-template --param server=production --output dist/asyncapi",
"asyncapi:lint": "asyncapi validate asyncapi/index.yaml",
"test": "vitest run"
}
}