-
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.88 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.88 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": "@captainsafia/burrow",
"version": "2.0.0",
"description": "Platform-agnostic, directory-scoped secrets manager",
"type": "module",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"bin": {
"burrow": "dist/cli.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/captainsafia/burrow.git"
},
"bugs": {
"url": "https://github.com/captainsafia/burrow/issues"
},
"homepage": "https://github.com/captainsafia/burrow#readme",
"scripts": {
"build": "bun build src/api.ts --outdir dist --target node && dts-bundle-generator -o dist/api.d.ts src/api.ts",
"build:cli": "bun build src/cli.ts --outdir dist --target bun",
"compile": "bun build src/cli.ts --compile --outfile burrow",
"compile:linux-x64": "bun build src/cli.ts --compile --target=bun-linux-x64 --outfile burrow-linux-x64",
"compile:linux-arm64": "bun build src/cli.ts --compile --target=bun-linux-arm64 --outfile burrow-linux-arm64",
"compile:darwin-x64": "bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile burrow-darwin-x64",
"compile:darwin-arm64": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile burrow-darwin-arm64",
"compile:windows-x64": "bun build src/cli.ts --compile --target=bun-windows-x64 --outfile burrow-windows-x64.exe",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"dts-bundle-generator": "^9.5.1",
"typescript": "^5"
},
"exports": {
".": {
"types": "./dist/api.d.ts",
"import": "./dist/api.js"
}
},
"keywords": [
"secrets",
"environment",
"dotenv",
"direnv",
"configuration"
],
"license": "MIT",
"dependencies": {
"@inquirer/password": "^5.0.3",
"clipboardy": "^5.0.2",
"commander": "^14.0.2",
"gh-release-update-notifier": "^1.0.1"
}
}