UNPKG

@asgardeo/nextjs

Version:

Next.js implementation of Asgardeo JavaScript SDK.

79 lines 2.26 kB
{ "name": "@asgardeo/nextjs", "version": "0.1.62", "description": "Next.js implementation of Asgardeo JavaScript SDK.", "keywords": [ "asgardeo", "next.js", "react", "ssr" ], "homepage": "https://github.com/asgardeo/javascript/tree/main/packages/next#readme", "bugs": { "url": "https://github.com/asgardeo/javascript/issues" }, "author": "WSO2", "license": "Apache-2.0", "type": "module", "main": "dist/esm/index.js", "module": "dist/esm/index.js", "commonjs": "dist/cjs/index.js", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./server": { "types": "./dist/types/server/index.d.ts", "import": "./dist/esm/server/index.js", "require": "./dist/cjs/server/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/asgardeo/javascript", "directory": "packages/next" }, "dependencies": { "@types/react": "19.1.4", "jose": "5.10.0", "tslib": "2.8.1", "@asgardeo/node": "0.0.42", "@asgardeo/react": "0.6.27" }, "devDependencies": { "@types/node": "22.15.3", "@wso2/eslint-plugin": "git+https://github.com/brionmario/wso2-ui-configs.git#a1fc6eb570653c999828aea9f5027cba06af4391&path:packages/eslint-plugin", "@wso2/prettier-config": "git+https://github.com/brionmario/wso2-ui-configs.git#a1fc6eb570653c999828aea9f5027cba06af4391&path:packages/prettier-config", "esbuild": "0.25.9", "esbuild-plugin-preserve-directives": "0.0.11", "eslint": "8.57.0", "next": "15.3.8", "prettier": "2.6.2", "react": "19.1.4", "rimraf": "6.1.0", "typescript": "5.7.2", "vitest": "3.1.3" }, "peerDependencies": { "next": ">=15.3.8", "react": ">=19.1.4" }, "publishConfig": { "access": "public" }, "scripts": { "build": "pnpm clean && node esbuild.config.mjs && tsc -p tsconfig.lib.json --outDir dist/esm", "clean": "rimraf dist", "fix:lint": "eslint . --ext .js,.jsx,.ts,.tsx,.cjs,.mjs", "lint": "eslint . --ext .js,.jsx,.ts,.tsx,.cjs,.mjs", "test": "vitest" } }