-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@asgardeo/nextjs",
"version": "0.1.27",
"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"
},
"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"
},
"dependencies": {
"@asgardeo/node": "workspace:^",
"@asgardeo/react": "workspace:^",
"@types/react": "^19.1.4",
"jose": "^5.10.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@wso2/eslint-plugin": "catalog:",
"@wso2/prettier-config": "catalog:",
"esbuild": "^0.25.9",
"esbuild-plugin-preserve-directives": "^0.0.11",
"eslint": "8.57.0",
"next": "^15.3.2",
"prettier": "^2.6.2",
"react": "^19.2.0",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"vitest": "^3.1.3"
},
"peerDependencies": {
"next": ">=13",
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public"
}
}