stack/packages/stack-sc/package.json
Konstantin Wohlwend 2806b473ce
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 Emulator Test / docker (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
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
Preview Docs / run (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
Dev Environment Test / restart-dev-and-test (push) Has been cancelled
Run setup tests / setup-tests (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
chore: update package versions
2025-04-29 10:41:11 -07:00

54 lines
1.3 KiB
JSON

{
"name": "@stackframe/stack-sc",
"version": "2.8.10",
"exports": {
"./force-react-server": {
"types": "./dist/index.react-server.d.ts",
"default": "./dist/index.react-server.js"
},
"./force-default": {
"types": "./dist/index.default.d.ts",
"default": "./dist/index.default.js"
},
".": {
"types": "./dist/index.combined.d.ts",
"react-server": "./dist/index.react-server.js",
"default": "./dist/index.default.js"
}
},
"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"
],
"peerDependencies": {
"next": ">=14.1 || >=15.0.0-rc.0",
"react": ">=18.2 || >=19.0.0-rc.0",
"react-dom": ">=18.2 || >=19.0.0-rc.0",
"@types/react": ">=18.3.12 || >=19.0.0-rc.0",
"@types/react-dom": ">=18.3.1 || >=19.0.0-rc.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"rimraf": "^5.0.5",
"react": "^18.2",
"react-dom": "^18.2",
"next": "^14.1.0"
}
}