kalshi-sdk
Version:
A public TypeScript SDK for Kalshi (https://kalshi.com/)
74 lines (73 loc) • 1.67 kB
JSON
{
"name": "kalshi-sdk",
"version": "0.0.13",
"description": "A public TypeScript SDK for Kalshi (https://kalshi.com/)",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rm -rf dist/ && tsup src/index.ts --format esm,cjs --dts --clean",
"test": "echo 'No tests yet'",
"deploy": "yarn build && npm version patch && yarn publish --access public",
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kurushdubash/kalshi-sdk.git"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"contributors": [
{
"name": "Kurush Dubash",
"url": "https://github.com/kurushdubash"
},
{
"name": "Kunal Roy",
"url": "https://github.com/kunal365roy"
}
],
"keywords": [
"typescript",
"sdk",
"kalshi",
"prediction markets",
"kalshi-sdk"
],
"author": "Kurush Dubash",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.2",
"eslint": "^9.20.1",
"husky": "^8.0.0",
"lint-staged": "^15.4.3",
"prettier": "^2.8.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9",
"crypto": "^1.0.1"
}
}