-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 3.67 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
{
"name": "@inrupt/solid-client-vc",
"description": "A library to act as a client to a server implementing the W3C VC HTTP APIs.",
"version": "1.2.0",
"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 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:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint:check": "npm run lint:eslint && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.js \"src/\" \"e2e/\"",
"lint:prettier": "prettier \"{src,e2e}/**/*.{ts,tsx,js,jsx,css}\" \"**/*.{md,mdx,yml}\"",
"test": "jest --selectProjects browser",
"test:e2e:node": "jest --selectProjects e2e-node --testTimeout 15000 --collectCoverage false",
"test:e2e:browser": "playwright test",
"test:e2e:browser:setup": "cd e2e/browser/test-app && npm ci",
"prepublishOnly": "npm run build"
},
"keywords": [
"rdf",
"solid",
"linked data",
"turtle"
],
"homepage": "https://docs.inrupt.com/developer-tools/javascript/client-libraries/",
"bugs": "https://github.com/inrupt/solid-client-vc-js/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./common": {
"import": "./dist/common/common.mjs",
"types": "./dist/common/common.d.ts"
},
"./issue": {
"import": "./dist/issue/issue.mjs",
"types": "./dist/issue/issue.d.ts"
},
"./derive": {
"import": "./dist/lookup/derive.mjs",
"types": "./dist/lookup/derive.d.ts"
},
"./query": {
"import": "./dist/lookup/query.mjs",
"types": "./dist/lookup/query.d.ts"
},
"./revoke": {
"import": "./dist/revoke/revoke.mjs",
"types": "./dist/revoke/revoke.d.ts"
},
"./verify": {
"import": "./dist/verify/verify.mjs",
"types": "./dist/verify/verify.d.ts"
}
},
"files": [
"dist",
"src",
"umd"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/inrupt/solid-client-vc-js.git"
},
"devDependencies": {
"@inrupt/base-rollup-config": "^3.0.2",
"@inrupt/eslint-config-lib": "^3.0.2",
"@inrupt/internal-playwright-helpers": "^3.1.0",
"@inrupt/internal-test-env": "^3.1.0",
"@inrupt/jest-jsdom-polyfills": "^3.0.2",
"@inrupt/solid-client-authn-node": "^2.0.0",
"@playwright/test": "^1.44.0",
"@rdfjs/types": "^1.1.0",
"@rushstack/eslint-patch": "^1.6.1",
"@types/jest": "^29.5.11",
"@types/md5": "^2.3.5",
"@types/n3": "^1.16.5",
"@types/node": "^22.1.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"rdf-isomorphic": "^1.3.1",
"rollup": "^4.9.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.27.1",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"dependencies": {
"@inrupt/solid-client": "^2.0.0",
"@inrupt/solid-client-errors": "^0.0.2",
"event-emitter-promisify": "^1.1.0",
"jsonld-context-parser": "^3.0.0",
"jsonld-streaming-parser": "^4.0.1",
"md5": "^2.3.0",
"n3": "^1.21.0",
"rdf-namespaces": "^1.12.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
}
}