mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
# Conflicts: # apps/backend/package.json # apps/dashboard/package.json # apps/dev-launchpad/package.json # apps/e2e/package.json # apps/mcp/package.json # apps/mock-oauth-server/package.json # apps/skills/package.json # examples/cjs-test/package.json # examples/convex/package.json # examples/demo/package.json # examples/docs-examples/package.json # examples/e-commerce/package.json # examples/js-example/package.json # examples/lovable-react-18-example/package.json # examples/middleware/package.json # examples/react-example/package.json # examples/supabase/package.json # examples/tanstack-start-demo/package.json # packages/dashboard-ui-components/package.json # packages/init-stack/package.json # packages/js/package.json # packages/react/package.json # packages/stack-cli/package.json # packages/stack-sc/package.json # packages/stack-shared/package.json # packages/stack-ui/package.json # packages/stack/package.json # packages/tanstack-start/package.json # packages/template/package.json
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "@hexclave/sc",
|
|
"version": "1.0.0",
|
|
"repository": "https://github.com/hexclave/stack-auth",
|
|
"exports": {
|
|
"./force-react-server": {
|
|
"types": "./dist/index.react-server.d.ts",
|
|
"import": {
|
|
"default": "./dist/esm/index.react-server.js"
|
|
},
|
|
"require": {
|
|
"default": "./dist/index.react-server.js"
|
|
}
|
|
},
|
|
"./force-default": {
|
|
"types": "./dist/index.default.d.ts",
|
|
"import": {
|
|
"default": "./dist/esm/index.default.js"
|
|
},
|
|
"require": {
|
|
"default": "./dist/index.default.js"
|
|
}
|
|
},
|
|
".": {
|
|
"types": "./dist/index.combined.d.ts",
|
|
"import": {
|
|
"react-server": "./dist/esm/index.react-server.js",
|
|
"default": "./dist/esm/index.default.js"
|
|
},
|
|
"require": {
|
|
"react-server": "./dist/index.react-server.js",
|
|
"default": "./dist/index.default.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && tsdown",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf dist && rimraf node_modules",
|
|
"dev": "tsdown --watch",
|
|
"lint": "eslint --ext .tsx,.ts ."
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"dist",
|
|
"CHANGELOG.md",
|
|
"LICENSE"
|
|
],
|
|
"peerDependencies": {
|
|
"next": ">=14.1 || >=15.0.0-rc.0",
|
|
"react": ">=19.0.0",
|
|
"react-dom": ">=19.0.0",
|
|
"@types/react": ">=19.0.0",
|
|
"@types/react-dom": ">=19.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@types/react": {
|
|
"optional": true
|
|
},
|
|
"@types/react-dom": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^6.1.2",
|
|
"react": "^19.0.1",
|
|
"react-dom": "^19.0.1",
|
|
"next": "^14.2.35"
|
|
},
|
|
"packageManager": "pnpm@10.23.0"
|
|
}
|