-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "@drizzle-http/rxjs-adapter",
"version": "3.1.0",
"description": "RxJs call adapter for Drizzle-HTTP",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rm -rf dist tsconfig.build.tsbuildinfo && tsc --build --force tsconfig.build.json",
"test": "jest --detectOpenHandles",
"lint": "eslint --fix --ext .ts .",
"prettier": "prettier './**' --write --ignore-unknown",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=16"
},
"author": {
"name": "Vitor Hugo Salgado",
"url": "https://github.com/vitorsalgado"
},
"license": "MIT",
"homepage": "https://github.com/vitorsalgado/drizzle-http/tree/main/packages/drizzle-rxjs",
"repository": {
"type": "git",
"url": "git+https://github.com/vitorsalgado/drizzle-http.git",
"directory": "packages/drizzle-rxjs"
},
"bugs": {
"url": "https://github.com/vitorsalgado/drizzle-http/issues"
},
"keywords": [
"drizzle-http",
"rxjs",
"rx",
"reactive",
"http",
"http client",
"api",
"typescript",
"decorators"
],
"dependencies": {
"@drizzle-http/core": "^3.1.0",
"rxjs": "^7.5.1"
},
"devDependencies": {
"@drizzle-http/test-utils": "^3.1.0",
"@drizzle-http/undici": "^3.1.0"
}
}