@whop/api
Version:
Whop API client
108 lines • 2.85 kB
JSON
{
"name": "@whop/api",
"version": "0.0.42",
"description": "Whop API client",
"repository": {
"type": "git",
"url": "https://github.com/whopio/whop-sdk-ts",
"directory": "packages/api"
},
"keywords": [
"whop",
"api",
"sdk",
"apps",
"payments"
],
"bugs": "https://github.com/whopio/whop-sdk-ts/issues",
"homepage": "https://whop.com/developers/",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"node": {
"import": {
"types": "./dist/index.node.d.mts",
"default": "./dist/index.node.mjs"
},
"require": {
"types": "./dist/index.node.d.ts",
"default": "./dist/index.node.js"
}
},
"browser": {
"import": {
"types": "./dist/index.browser.d.mts",
"default": "./dist/index.browser.mjs"
},
"require": {
"types": "./dist/index.browser.d.ts",
"default": "./dist/index.browser.js"
}
},
"import": {
"types": "./dist/index.browser.d.mts",
"default": "./dist/index.browser.mjs"
},
"require": {
"types": "./dist/index.browser.d.ts",
"default": "./dist/index.browser.js"
}
}
},
"dependencies": {
"graphql": "16.11.0",
"graphql-request": "latest",
"graphql-tag": "2.12.6",
"jose": "6.0.11",
"js-md5": "0.8.3",
"tiny-typed-emitter": "2.1.0"
},
"devDependencies": {
"@auth/core": "^0.40.0",
"@biomejs/js-api": "0.7.1",
"@biomejs/wasm-nodejs": "1.9.4",
"@graphql-codegen/cli": "5.0.6",
"@graphql-codegen/typescript": "4.1.6",
"@graphql-codegen/typescript-generic-sdk": "4.0.2",
"@graphql-codegen/typescript-operations": "4.6.1",
"@graphql-tools/graphql-file-loader": "^8.0.20",
"@graphql-tools/load": "^8.1.0",
"@graphql-tools/url-loader": "^8.0.31",
"@parcel/watcher": "2.5.1",
"@protobuf-ts/protoc": "2.11.0",
"@types/node": "latest",
"concurrently": "9.1.2",
"dotenv": "16.5.0",
"graphql-ruby-client": "1.14.6",
"ts-proto": "2.7.1",
"tsup": "8.5.0",
"typescript": "latest"
},
"engines": {
"node": "22.x",
"pnpm": "9.15.9"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@auth/core": "^0.40.0"
},
"scripts": {
"build": "tsup",
"build:proto": "bash ./scripts/generate-protos.sh",
"build:graphql": "graphql-codegen",
"dev": "concurrently \"pnpm dev:tsup\" \"pnpm dev:graphql\"",
"dev:tsup": "tsup --watch",
"dev:graphql": "graphql-codegen --watch",
"check-types": "tsc --noEmit",
"lint:fix": "biome check --write --unsafe",
"sync-operations": "node sync-operations.mjs"
}
}