mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"name": "@stackframe/stack-sc",
|
|
"version": "1.2.1",
|
|
"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",
|
|
"react": "^18.2.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"next": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^6",
|
|
"@typescript-eslint/parser": "^6.x",
|
|
"@types/react": "^18.2.0",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "^14",
|
|
"rimraf": "^5.0.5"
|
|
}
|
|
}
|