-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
154 lines (154 loc) · 5.47 KB
/
package.json
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "@inrupt/solid-client-access-grants",
"description": "A library for managing access grants in Solid",
"version": "3.1.1",
"license": "MIT",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"docs:clean": "cd docs/api; make clean-all",
"docs:install": "cd docs/api; pip install -r https://raw.githubusercontent.com/inrupt/docs-assets/main/requirements/api/requirements.txt",
"docs:build": "typedoc && cd docs/api && make html dist",
"docs:preview": "python3 -m http.server --bind 127.0.0.1 --directory docs/dist",
"lint": "npm run lint:check",
"lint:check": "npm run lint:eslint && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.js \"src/\" \"e2e/\" \"examples/\"",
"lint:prettier": "prettier \"{src,e2e,examples}/**/*.{ts,tsx,js,jsx,css}\" \"**/*.{md,mdx,yml}\"",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"test": "jest --ignoreProjects e2e-node",
"test:unit:browser": "jest --selectProjects browser",
"test:unit:node": "jest --selectProjects node",
"test:e2e:node": "jest --selectProjects e2e-node --testTimeout 120000 --collectCoverage false",
"test:e2e:browser": "playwright test",
"test:e2e:browser:setup": "cd e2e/browser/test-app && npm ci",
"licenses:list": "license-checker --production --csv --out LICENSE_DEPENDENCIES_ALL",
"licenses:check": "license-checker --production --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\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"rdf",
"solid",
"linked data",
"turtle"
],
"homepage": "https://docs.inrupt.com/developer-tools/api/javascript/solid-client-access-grants/",
"bugs": "https://github.com/inrupt/solid-client-access-grants-js/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./resource": "./dist/resource/index.mjs",
"./fetch": "./dist/resource/index.mjs",
"./discover": "./dist/gConsent/discover/index.mjs",
"./manage": "./dist/gConsent/manage/index.mjs",
"./query": "./dist/gConsent/query/query.mjs",
"./request": "./dist/gConsent/request/index.mjs",
"./verify": "./dist/common/verify/index.mjs",
"./getters": "./dist/common/getters.mjs",
"./gConsent": "./dist/gConsent/index.mjs",
"./gConsent/discover": "./dist/gConsent/discover/index.mjs",
"./gConsent/manage": "./dist/gConsent/manage/index.mjs",
"./gConsent/request": "./dist/gConsent/request/index.mjs"
},
"typesVersions": {
"*": {
"discover": [
"dist/gConsent/discover/index.d.ts"
],
"manage": [
"dist/gConsent/manage/index.d.ts"
],
"query": [
"dist/gConsent/query/query.d.ts"
],
"request": [
"dist/gConsent/request/index.d.ts"
],
"verify": [
"dist/common/verify/index.d.ts"
],
"resource": [
"dist/resource/index.d.ts"
],
"fetch": [
"dist/fetch/index.d.ts"
]
},
"gConsent": {
"discover": [
"dist/gConsent/discover/index.d.ts"
],
"manage": [
"dist/gConsent/manage/index.d.ts"
],
"request": [
"dist/gConsent/request/index.d.ts"
],
"verify": [
"dist/common/verify/index.d.ts"
]
}
},
"files": [
"dist",
"src",
"umd"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/inrupt/solid-client-access-grants-js.git"
},
"devDependencies": {
"@inrupt/eslint-config-lib": "^3.2.3",
"@inrupt/eslint-config-react": "^3.2.3",
"@inrupt/internal-playwright-helpers": "^3.2.3",
"@inrupt/internal-test-env": "^3.2.3",
"@inrupt/jest-jsdom-polyfills": "^3.2.3",
"@inrupt/solid-client-authn-browser": "^2.0.0",
"@inrupt/solid-client-authn-node": "^2.0.0",
"@playwright/test": "~1.49.0",
"@rdfjs/types": "^1.1.0",
"@rushstack/eslint-patch": "^1.6.1",
"@types/auth-header": "^1.0.6",
"@types/jest": "^29.5.11",
"@types/n3": "^1.16.4",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"event-emitter-promisify": "^1.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^3.1.1",
"rdf-isomorphic": "^1.3.1",
"rollup": "^4.23.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@inrupt/solid-client": "^2.0.0",
"@inrupt/solid-client-errors": "^0.0.2",
"@inrupt/solid-client-vc": "^1.2.0",
"@types/rdfjs__dataset": "^2.0.7",
"auth-header": "^1.0.0",
"base64url": "^3.0.1",
"n3": "^1.17.2",
"rdf-namespaces": "^1.9.2"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
},
"publishConfig": {
"access": "public"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}