-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@infisical/sdk",
"version": "0.0.0",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"types": "./lib/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.mts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"private": false,
"files": [
"lib"
],
"scripts": {
"build": "tsup",
"test": "vitest run"
},
"keywords": [
"infisical",
"open-source",
"sdk",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/infisical/infisical-node-sdk.git"
},
"author": "Infisical Inc, <daniel@infisical.com>",
"license": "ISC",
"description": "The Infisical SDK provides a convenient way to programmatically interact with the Infisical API.",
"devDependencies": {
"@types/node": "^22.5.1",
"tsc": "^2.0.4",
"tsup": "^8.2.4",
"vitest": "^2.1.9"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-providers": "3.993.0",
"@smithy/protocol-http": "^5.3.8",
"@smithy/signature-v4": "^5.3.8",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"engines": {
"node": ">=20"
},
"directories": {
"lib": "lib",
"test": "sink"
},
"bugs": {
"url": "https://github.com/infisical/infisical-node-sdk/issues"
},
"homepage": "https://github.com/infisical/infisical-node-sdk#readme"
}