-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.76 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.76 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
76
{
"name": "@jacobwolf/gitops-secrets",
"version": "0.1.1",
"description": "Easily and securely inject environment variable secrets—no matter the size—into any JavaScript runtime.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./no-fs": {
"import": "./dist/no-fs.js",
"require": "./dist/no-fs.js",
"types": "./dist/no-fs.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:js": "biome check --write .",
"lint:ts": "tsc --noEmit --pretty",
"format": "biome format --write .",
"build": "tsup",
"test": "vitest run",
"prepublishOnly": "pnpm build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": [
"pnpm lint:js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/JacobNWolf/gitops-secrets"
},
"keywords": [
"secrets",
"environment-variables",
"encryption",
"security",
"serverless",
"edge-functions",
"vercel",
"netlify",
"lambda",
"doppler",
"gitops",
"web-crypto",
"environment",
"env",
"config",
"configuration",
"edge-runtime"
],
"author": "Jacob Wolf",
"license": "MIT",
"packageManager": "pnpm@10.6.5",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.13.11",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"memfs": "^4.17.0",
"msw": "^2.7.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}