-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "@pablozaiden/devbox",
"version": "0.1.0",
"type": "module",
"description": "CLI to run and expose a devcontainer with SSH agent sharing and a bundled SSH server.",
"repository": {
"type": "git",
"url": "git+https://github.com/PabloZaiden/devbox.git"
},
"homepage": "https://github.com/PabloZaiden/devbox#readme",
"bugs": {
"url": "https://github.com/PabloZaiden/devbox/issues"
},
"keywords": [
"devcontainer",
"docker",
"ssh",
"cli"
],
"publishConfig": {
"access": "public"
},
"os": [
"darwin",
"linux"
],
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"README.md"
],
"bin": {
"devbox": "./dist/devbox.js"
},
"scripts": {
"build": "rm -rf dist && mkdir -p dist && bun build --target=node --packages=bundle --outfile dist/devbox.js src/cli.ts && chmod +x dist/devbox.js",
"dev": "bun run src/cli.ts",
"test": "bun test",
"test:fast": "DEVBOX_SKIP_LIVE_EXAMPLE_TESTS=1 bun test",
"pack:dry-run": "npm pack --dry-run"
},
"dependencies": {
"jsonc-parser": "3.3.1"
},
"devDependencies": {
"@types/bun": "1.3.10"
}
}