stack/packages/stack-shared/package.json
Konstantin Wohlwend 96ced2bda2
Some checks failed
all-good: Did all the other checks pass? / all-good (push) Has been cancelled
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
Docker Server Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Server Test / docker (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Runs E2E API Tests with custom port prefix / build (22.x) (push) Has been cancelled
Runs E2E API Tests with external source of truth / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (latest) (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Dev Environment Test With Custom Base Port / restart-dev-and-test-with-custom-base-port (push) Has been cancelled
Dev Environment Test / restart-dev-and-test (push) Has been cancelled
Run setup tests / setup-tests (push) Has been cancelled
Sync Main to Dev / sync-commits (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
chore: update package versions
2025-11-10 12:37:35 -08:00

83 lines
1.8 KiB
JSON

{
"name": "@stackframe/stack-shared",
"version": "2.8.51",
"scripts": {
"build": "rimraf dist && tsup-node",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"clean": "rimraf dist && rimraf node_modules",
"dev": "tsup-node --watch",
"lint": "eslint --ext .tsx,.ts ."
},
"files": [
"README.md",
"dist",
"CHANGELOG.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": {
"default": "./dist/index.js"
},
"default": "./dist/esm/index.js"
},
"./dist/*": {
"types": "./dist/*.d.ts",
"require": {
"default": "./dist/*.js"
},
"default": "./dist/esm/*.js"
}
},
"peerDependencies": {
"@types/react": ">=19.0.0",
"@types/react-dom": ">=19.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"yup": "^1.4.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"yup": {
"optional": true
}
},
"dependencies": {
"@aws-sdk/client-kms": "^3.876.0",
"@opentelemetry/api": "^1.9.0",
"@simplewebauthn/browser": "^11.0.0",
"@vercel/functions": "^2.0.0",
"async-mutex": "^0.5.0",
"bcryptjs": "^3.0.2",
"crc": "^4.3.2",
"elliptic": "^6.5.7",
"esbuild-wasm": "^0.20.2",
"ip-regex": "^5.0.0",
"jose": "^5.2.2",
"oauth4webapi": "^2.10.3",
"semver": "^7.6.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@sentry/nextjs": "^10.11.0",
"@simplewebauthn/types": "^11.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/elliptic": "^6.4.18",
"@types/semver": "^7.5.8",
"@types/uuid": "^9.0.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^5.0.5"
}
}