-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "@uvdsl/solid-requests",
"version": "0.0.9",
"author": "uvdsl - Christoph Braun",
"license": "MIT",
"description": "A small library that provides HTTP requests using the Solid protocol.",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/uvdsl/solid-requests.git"
},
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"prebuild": "rimraf ./dist",
"build": "run-s compile",
"test": "exit 0",
"postbuild": "node ./scripts/prepare-package-json.js"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/n3": "^1.21.1",
"jest": "^29.0.0",
"npm-run-all2": "^7.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@uvdsl/solid-oidc-client-browser": "^0.2.1",
"n3": "^1.24.2"
}
}