-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.56 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
80
81
82
83
84
85
86
87
{
"name": "next-cas-client",
"version": "1.3.6",
"description": "A CAS client built for Next.js to authenticate, validate tickets, and provide session management to a CAS server",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": "https://github.com/uhawaii-system-its-ti-iam/next-cas-client",
"homepage": "https://github.com/uhawaii-system-its-ti-iam/next-cas-client",
"scripts": {
"prepare": "npm run build",
"build": "tsup",
"lint": "eslint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"node": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./app": {
"types": "./dist/app.d.mts",
"node": "./dist/app.js",
"import": "./dist/app.mjs",
"require": "./dist/app.js"
},
"./pages": {
"types": "./dist/pages.d.mts",
"node": "./dist/pages.js",
"import": "./dist/pages.mjs",
"require": "./dist/pages.js"
}
},
"keywords": [
"next.js",
"react",
"cas",
"client",
"authentication"
],
"author": "Jordan Wong <jordanw4@hawaii.edu>",
"license": "Apache-2.0",
"dependencies": {
"@xmldom/xmldom": "^0.9.9",
"iron-session": "^9.0.1",
"uniqid": "^5.4.0",
"xpath": "^0.0.34"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@types/uniqid": "^5.3.4",
"@vitest/coverage-istanbul": "^5.0.0",
"@vitest/ui": "^5.0.0",
"baseline-browser-mapping": "^2.10.18",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.5.5",
"jsdom": "^30.0.0",
"postcss": "^8.5.26",
"prettier": "^3.8.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "~5.9.2",
"typescript-eslint": "^8.58.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^5.0.0",
"vitest-fetch-mock": "^0.4.3"
},
"peerDependencies": {
"next": "^13 || ^14 || ^15",
"react": "^18 || ^19"
},
"overrides": {
"@babel/core": "^7.29.7",
"esbuild": "^0.28.2",
"postcss": "^8.5.26",
"sharp": "^0.35.0"
},
"engines": {
"node": ">=22.22.2"
}
}