stack/packages/stack-sc/package.json
Konstantin Wohlwend aada9d0797
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.6) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.6) (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
TOC Generator / TOC Generator (push) Has been cancelled
chore: update package versions
2024-09-05 18:31:33 -07:00

43 lines
998 B
JSON

{
"name": "@stackframe/stack-sc",
"version": "2.5.30",
"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",
"react": ">=18.2"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@types/react": "^18.2.66",
"next": "^14.1.0",
"react": "^18.2.0"
}
}