-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "@algolia/requester-node-http",
"version": "5.8.1",
"description": "Promise-based request library for node using the native http module.",
"repository": {
"type": "git",
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
},
"license": "MIT",
"author": "Algolia",
"type": "module",
"files": [
"dist",
"index.d.ts",
"index.js"
],
"exports": {
".": {
"types": {
"import": "./dist/requester.http.d.ts",
"module": "./dist/requester.http.d.ts",
"require": "./dist/requester.http.d.cts"
},
"import": "./dist/requester.http.js",
"module": "./dist/requester.http.js",
"require": "./dist/requester.http.cjs"
},
"./src/*": "./src/*.ts"
},
"scripts": {
"build": "yarn clean && yarn tsup",
"clean": "rm -rf ./dist || true",
"test": "vitest --run",
"test:bundle": "publint . && attw --pack ."
},
"dependencies": {
"@algolia/client-common": "5.8.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@types/node": "22.7.5",
"nock": "13.5.5",
"publint": "0.2.11",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vitest": "2.1.2"
},
"engines": {
"node": ">= 14.0.0"
}
}