mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Some checks failed
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
Docker Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Test / docker (push) Has been cancelled
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
76 lines
1.7 KiB
JSON
76 lines
1.7 KiB
JSON
{
|
|
"name": "@stackframe/stack-shared",
|
|
"version": "2.7.4",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf dist && rimraf node_modules",
|
|
"dev": "tsc -w --preserveWatchOutput --declarationMap",
|
|
"lint": "eslint --ext .tsx,.ts ."
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./dist/*": {
|
|
"types": "./dist/*.d.ts",
|
|
"default": "./dist/*.js"
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": ">=18.2 || >=19.0.0-rc.0",
|
|
"@types/react-dom": ">=18.2 || >=19.0.0-rc.0",
|
|
"next": ">=14.1.0 || >=15.0.0-rc.0",
|
|
"react": ">=18.2 || >=19.0.0-rc.0",
|
|
"react-dom": ">=18.2 || >=19.0.0-rc.0",
|
|
"yup": "^1.4.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"@types/react": {
|
|
"optional": true
|
|
},
|
|
"@types/react-dom": {
|
|
"optional": true
|
|
},
|
|
"yup": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@simplewebauthn/browser": "^11.0.0",
|
|
"@stackframe/stack-sc": "workspace:*",
|
|
"async-mutex": "^0.5.0",
|
|
"bcrypt": "^5.1.1",
|
|
"elliptic": "^6.5.7",
|
|
"ip-regex": "^5.0.0",
|
|
"jose": "^5.2.2",
|
|
"oauth4webapi": "^2.10.3",
|
|
"semver": "^7.6.3",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sentry/nextjs": "^8.40.0",
|
|
"@simplewebauthn/types": "^11.0.0",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/elliptic": "^6.4.18",
|
|
"@types/semver": "^7.5.8",
|
|
"@types/uuid": "^9.0.8",
|
|
"next": "^14.1.0",
|
|
"react": "^18.2",
|
|
"react-dom": "^18.2",
|
|
"rimraf": "^5.0.5"
|
|
}
|
|
}
|