-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "@opensearch-project/opensearch",
"version": "1.0.0",
"description": "The official OpenSearch client for Node.js",
"type": "module",
"main": "index.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "vitest",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier src",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier src -w",
"coverage": "vitest run --coverage",
"unbuild": "unbuild",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "tsc --emitDeclarationOnly & tsc -p tsconfig.cjs.json & tsc -p tsconfig.esm.json",
"tsup": "npx tsup src/index.ts --format cjs,esm --dts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/timursaurus/opensearch-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/timursaurus/opensearch-ts/issues"
},
"homepage": "https://github.com/timursaurus/opensearch-ts#readme",
"devDependencies": {
"@aws-sdk/credential-provider-node": "^3.310.0",
"@aws-sdk/types": "^3.310.0",
"@types/aws4": "^1.11.2",
"@types/debug": "^4.1.7",
"@types/stoppable": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitest/coverage-c8": "^0.29.7",
"aws-sdk": "^2.1354.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^46.0.0",
"prettier": "^2.8.7",
"proxy": "^2.1.1",
"stoppable": "^1.1.0",
"typescript": "^5.0.2",
"unbuild": "^1.1.2",
"vitest": "^0.29.7"
},
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
"@aws-sdk/signature-v4": "^3.303.0",
"aws4": "^1.12.0",
"debug": "^4.3.4",
"hpagent": "^1.2.0",
"ms": "^2.1.3",
"secure-json-parse": "^2.7.0"
}
}