mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
35 lines
752 B
JSON
35 lines
752 B
JSON
{
|
|
"name": "@stackframe/stack-sc",
|
|
"version": "1.3.2",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.server.d.ts",
|
|
"react-server": {
|
|
"browser": "./dist/index.server.js",
|
|
"node": "./dist/index.server.js"
|
|
},
|
|
"default": {
|
|
"browser": "./dist/index.client.js",
|
|
"node": "./dist/index.client.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf dist && rimraf node_modules",
|
|
"dev": "tsc -w --preserveWatchOutput --declarationMap",
|
|
"lint": "eslint --ext .tsx,.ts ."
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"next": "^14.1",
|
|
"react": "^18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.66"
|
|
}
|
|
}
|