stack/packages/stack-shared/package.json
Zai Shi 0392a7ca87
Some checks are pending
Runs E2E API Tests / build (20.x) (push) Waiting to run
Lint & build / lint_and_build (18.x) (push) Waiting to run
Lint & build / lint_and_build (20.x) (push) Waiting to run
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Waiting to run
Publish Docs / run (push) Waiting to run
chore: update package versions
2024-07-29 21:59:32 -07:00

57 lines
1.1 KiB
JSON

{
"name": "@stackframe/stack-shared",
"version": "2.5.13",
"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": {
"react": ">=18.2",
"yup": "^1.4.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"yup": {
"optional": true
}
},
"dependencies": {
"bcrypt": "^5.1.1",
"jose": "^5.2.2",
"oauth4webapi": "^2.10.3",
"uuid": "^9.0.1",
"@stackframe/stack-sc": "workspace:*"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@types/bcrypt": "^5.0.2",
"@types/react": "^18.2.66",
"@types/uuid": "^9.0.8",
"next": "^14.1.0",
"react": "^18.2.0"
}
}