-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 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
{
"name": "@wgtechlabs/secrets-engine",
"version": "2.0.0",
"description": "Bun-first TypeScript SDK for securely storing and managing secrets with zero-friction, machine-bound AES-256-GCM encryption.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
"build:types": "bun x tsc --emitDeclarationOnly --declaration --outDir dist",
"prepublishOnly": "bun run build && bun run build:types",
"test": "bun test",
"test:coverage": "bun test --coverage",
"lint": "bunx biome check ./src ./tests",
"lint:fix": "bunx biome check --write ./src ./tests",
"format": "bunx biome format --write ./src ./tests",
"typecheck": "bun x tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"secrets",
"encryption",
"aes-256-gcm",
"vault",
"keystore",
"bun",
"typescript",
"machine-bound",
"credential-management"
],
"author": "WG Tech Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wgtechlabs/secrets-engine.git"
},
"engines": {
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "^1.2.0",
"typescript": "^5.7.0"
}
}