forked from inrupt/solid-client-authn-js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.74 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
{
"name": "@neiro21/solid-client-authn-webext",
"version": "0.3.0",
"description": "Solid client auth library for web browser extensions",
"keywords": [
"solid",
"browser-extension",
"authentication"
],
"license": "MIT",
"types": "dist/index.d.ts",
"browser": "dist/index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"bundle": "dist/solid-client-authn-webext.bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/NeiRo21/solid-client-authn-webext.git"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config rollup.config.mjs",
"licenses:check": "license-checker --production --out license.csv --failOn \"AGPL-1.0-only; AGPL-1.0-or-later; AGPL-3.0-only; AGPL-3.0-or-later; Beerware; CC-BY-NC-1.0; CC-BY-NC-2.0; CC-BY-NC-2.5; CC-BY-NC-3.0; CC-BY-NC-4.0; CC-BY-NC-ND-1.0; CC-BY-NC-ND-2.0; CC-BY-NC-ND-2.5; CC-BY-NC-ND-3.0; CC-BY-NC-ND-4.0; CC-BY-NC-SA-1.0; CC-BY-NC-SA-2.0; CC-BY-NC-SA-2.5; CC-BY-NC-SA-3.0; CC-BY-NC-SA-4.0; CPAL-1.0; EUPL-1.0; EUPL-1.1; EUPL-1.1; GPL-1.0-only; GPL-1.0-or-later; GPL-2.0-only; GPL-2.0-or-later; GPL-3.0; GPL-3.0-only; GPL-3.0-or-later; SISSL; SISSL-1.2; WTFPL\""
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/uuid": "^10.0.0"
},
"dependencies": {
"@inrupt/oidc-client-ext": "^4.0.0",
"@inrupt/solid-client-authn-core": "^4.0.0",
"@types/firefox-webext-browser": "^120.0.0",
"events": "^3.3.0",
"jose": "^5.1.3",
"uuid": "^14.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^22.0.0 || ^24.0.0"
}
}