-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "@git-stunts/vault",
"version": "1.0.0",
"description": "A secure interface to OS-native keychains (macOS, Linux, Windows) for \"Zero-Secret Architecture.\"",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./service": "./src/domain/services/VaultService.js",
"./errors": "./src/domain/errors/VaultError.js",
"./adapters/keychain": "./src/infrastructure/adapters/KeychainAdapter.js",
"./adapters/node": "./src/infrastructure/adapters/node/index.js",
"./adapters/bun": "./src/infrastructure/adapters/bun/index.js",
"./adapters/deno": "./src/infrastructure/adapters/deno/index.js",
"./ports/command-runner": "./src/ports/CommandRunnerPort.js"
},
"files": [
"index.js",
"src",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node ./scripts/run-tests.js",
"benchmark": "sh -c 'if [ \"$GIT_STUNTS_DOCKER\" = \"1\" ]; then vitest bench test/benchmark \"$@\"; else docker compose run --build --rm test npm run benchmark -- \"$@\"; fi' --",
"lint": "eslint .",
"format": "prettier --write .",
"test:local": "vitest run test/unit",
"benchmark:local": "vitest bench test/benchmark"
},
"author": "James Ross <james@flyingrobots.dev>",
"license": "Apache-2.0",
"dependencies": {
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/git-stunts/vault.git"
},
"homepage": "https://github.com/git-stunts/vault#readme",
"bugs": {
"url": "https://github.com/git-stunts/vault/issues"
},
"keywords": [
"secrets",
"vault",
"keychain",
"credentials",
"bun",
"deno",
"automation"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.3.5",
"deno": ">=2.0.0"
},
"sideEffects": false
}