package.json•941 B
{
"name": "@convex-dev/workos",
"version": "0.0.1",
"description": "Helper for authenticating a Convex client via WorkOS AuthKit",
"type": "module",
"scripts": {
"build": "node version-check.mjs && zshy",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@workos-inc/authkit-react": "^0.11.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"vitest": "^3.2.4",
"zshy": "0.4.1"
},
"peerDependencies": {
"convex": "^1.25.0",
"react": "^18.0.0 || ^19.0.0-0 || ^19.0.0"
},
"zshy": "./src/index.tsx",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}