-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 970 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 970 Bytes
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
{
"name": "@solid/reactive-authentication",
"version": "0.1.1",
"author": "Samu Lang (https://github.com/langsamu)",
"contributors": [
"Matthieu Bosquet (https://github.com/matthieubosquet)",
"Samu Lang (https://github.com/langsamu)",
"Jesse Wright (https://github.com/jeswr)"
],
"main": "dist/mod.js",
"type": "module",
"types": "./dist/mod.d.ts",
"exports": {
".": "./dist/mod.js",
"./registerElements.js": "./dist/registerElements.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/solid-contrib/reactive-authentication.git"
},
"scripts": {
"build": "tsc"
},
"license": "MIT",
"dependencies": {
"oauth4webapi": "^3",
"dpop": "^2"
},
"devDependencies": {
"typedoc": "^0.28.18",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^6"
},
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
}
}