-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.99 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.99 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "adapt-auth-sdk",
"version": "2.1.0",
"description": "Provides all the functionality needed to easily integrate your Javascript web applications with Stanford SAML federated identity provider.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
},
"./session": {
"import": {
"types": "./dist/esm/session.d.ts",
"default": "./dist/esm/session.js"
},
"require": {
"types": "./dist/cjs/session.d.ts",
"default": "./dist/cjs/session.cjs"
}
},
"./edge-session": {
"import": {
"types": "./dist/esm/edge-session.d.ts",
"default": "./dist/esm/edge-session.js"
},
"require": {
"types": "./dist/cjs/edge-session.d.ts",
"default": "./dist/cjs/edge-session.cjs"
}
},
"./saml": {
"import": {
"types": "./dist/esm/saml.d.ts",
"default": "./dist/esm/saml.js"
},
"require": {
"types": "./dist/cjs/saml.d.ts",
"default": "./dist/cjs/saml.cjs"
}
},
"./next": {
"import": {
"types": "./dist/esm/next.d.ts",
"default": "./dist/esm/next.js"
},
"require": {
"types": "./dist/cjs/next.d.ts",
"default": "./dist/cjs/next.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && rollup -c && npm run build:cleanup",
"build:cleanup": "rimraf dist/**/_virtual dist/**/node_modules",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SU-SWS/adapt-auth-sdk.git"
},
"author": "Stanford Web Services",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/SU-SWS/adapt-auth-sdk/issues"
},
"homepage": "https://github.com/SU-SWS/adapt-auth-sdk#readme",
"dependencies": {
"@node-saml/node-saml": "^5.0.1",
"iron-session": "^8.0.4"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"rimraf": "^6.0.1",
"rollup": "^4.52.2",
"rollup-plugin-dts": "^6.2.3",
"ts-jest": "^29.4.4",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"optionalDependencies": {
"next": ">=14"
},
"engines": {
"node": ">=18"
}
}