|
1 | 1 | {
|
2 | 2 | "name": "@litehex/node-vault",
|
3 | 3 | "version": "1.0.0",
|
| 4 | + "private": false, |
4 | 5 | "description": "A client for the HashiCorp's Vault API written for Node.js",
|
5 |
| - "main": "dist/index.cjs", |
6 |
| - "module": "dist/index.js", |
7 |
| - "types": "dist/index.d.cts", |
8 |
| - "files": [ |
9 |
| - "dist/**" |
| 6 | + "keywords": [ |
| 7 | + "hashicorp", |
| 8 | + "vault", |
| 9 | + "client", |
| 10 | + "secrets", |
| 11 | + "node" |
10 | 12 | ],
|
| 13 | + "homepage": "https://github.com/shahradelahi/node-vault#readme", |
| 14 | + "bugs": { |
| 15 | + "url": "https://github.com/shahradelahi/node-vault/issues" |
| 16 | + }, |
| 17 | + "repository": "github:shahradelahi/node-vault", |
| 18 | + "license": "MIT", |
| 19 | + "author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)", |
| 20 | + "type": "module", |
11 | 21 | "exports": {
|
12 | 22 | ".": {
|
13 | 23 | "import": {
|
|
20 | 30 | }
|
21 | 31 | }
|
22 | 32 | },
|
| 33 | + "main": "dist/index.cjs", |
| 34 | + "module": "dist/index.js", |
| 35 | + "types": "dist/index.d.cts", |
| 36 | + "files": [ |
| 37 | + "dist/**" |
| 38 | + ], |
23 | 39 | "scripts": {
|
24 | 40 | "build": "tsup",
|
25 |
| - "test": "mocha \"**/*.test.ts\" --retries 2", |
26 |
| - "typecheck": "tsc --noEmit", |
| 41 | + "ci:publish": "changeset publish", |
| 42 | + "format": "prettier --write .", |
| 43 | + "format:check": "prettier --check .", |
27 | 44 | "lint": "pnpm typecheck && eslint .",
|
28 | 45 | "lint:fix": "eslint --fix .",
|
29 |
| - "format:check": "prettier --check .", |
30 |
| - "format": "prettier --write .", |
31 |
| - "ci:publish": "changeset publish", |
32 |
| - "prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build" |
| 46 | + "prepublishOnly": "pnpm test && pnpm lint && pnpm format:check && pnpm build", |
| 47 | + "test": "mocha \"**/*.test.ts\" --retries 2", |
| 48 | + "typecheck": "tsc --noEmit" |
33 | 49 | },
|
34 |
| - "packageManager": "pnpm@8.15.7", |
35 | 50 | "dependencies": {
|
36 | 51 | "p-safe": "^1.0.0",
|
37 | 52 | "zod": "^3.23.8",
|
38 | 53 | "zod-request": "^0.2.2"
|
39 | 54 | },
|
40 | 55 | "devDependencies": {
|
41 | 56 | "@changesets/cli": "^2.27.9",
|
42 |
| - "@ianvs/prettier-plugin-sort-imports": "^4.3.1", |
| 57 | + "@shahrad/prettier-config": "^1.1.0", |
43 | 58 | "@types/chai": "^5.0.0",
|
44 | 59 | "@types/lodash": "^4.17.10",
|
45 | 60 | "@types/mocha": "^10.0.9",
|
|
58 | 73 | "typescript": "^5.6.2",
|
59 | 74 | "undici": "^6.19.8"
|
60 | 75 | },
|
61 |
| - "type": "module", |
| 76 | + "packageManager": "pnpm@8.15.7", |
62 | 77 | "engines": {
|
63 | 78 | "node": ">=18.0.0"
|
64 | 79 | },
|
65 |
| - "private": false, |
66 | 80 | "publishConfig": {
|
67 | 81 | "access": "public",
|
68 | 82 | "provenance": true
|
69 |
| - }, |
70 |
| - "repository": { |
71 |
| - "type": "git", |
72 |
| - "url": "git://github.com/shahradelahi/node-vault.git" |
73 |
| - }, |
74 |
| - "keywords": [ |
75 |
| - "hashicorp", |
76 |
| - "vault", |
77 |
| - "client", |
78 |
| - "secrets", |
79 |
| - "node" |
80 |
| - ], |
81 |
| - "author": "Shahrad Elahi <shahrad@litehex.com> (https://github.com/shahradelahi)", |
82 |
| - "license": "MIT", |
83 |
| - "bugs": { |
84 |
| - "url": "https://github.com/shahradelahi/node-vault/issues" |
85 |
| - }, |
86 |
| - "homepage": "https://github.com/shahradelahi/node-vault#readme" |
| 83 | + } |
87 | 84 | }
|
0 commit comments