forked from shahradelahi/node-vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.02 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@litehex/node-vault",
"version": "1.1.4",
"private": false,
"description": "A client for the HashiCorp's Vault API written for Node.js",
"keywords": [
"hashicorp",
"vault",
"client",
"secrets",
"node"
],
"homepage": "https://github.com/shahradelahi/node-vault#readme",
"bugs": {
"url": "https://github.com/shahradelahi/node-vault/issues"
},
"repository": "github:shahradelahi/node-vault",
"license": "MIT",
"author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"!dist/**/*.d.cts"
],
"scripts": {
"build": "tsup",
"ci:publish": "changeset publish",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "pnpm typecheck && eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "pnpm build && pnpm test && pnpm lint && pnpm format:check",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@se-oss/object": "^1.1.0",
"p-safe": "^1.0.0",
"zod": "^4.3.6",
"zod-request": "^0.2.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@edge-runtime/vm": "^5.0.0",
"@shahrad/eslint-config": "^1.0.1",
"@shahrad/prettier-config": "^1.2.2",
"@shahrad/tsconfig": "^1.2.0",
"@types/node": "^25.1.0",
"eslint": "^9.39.2",
"globals": "^17.2.0",
"prettier": "^3.8.1",
"testcontainers": "^11.11.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"undici": "^7.19.2",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}