-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.65 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.65 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
77
78
79
80
81
82
83
{
"name": "@gricha/perry",
"version": "0.5.1",
"description": "Self-contained CLI for spinning up Docker-in-Docker development environments with SSH and proxy helpers.",
"type": "module",
"bin": {
"perry": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "trap 'kill 0' EXIT; (cd web && bunx vite build --watch) & bun --watch src/index.ts agent run --port 7391",
"build": "rm -rf ./dist && bun run build:ts && bun run build:worker && bun run build:web && bun link",
"build:ts": "tsc && chmod +x dist/index.js",
"build:worker": "bun build src/index.ts --compile --outfile dist/perry-worker --target=bun",
"build:web": "cd web && bun run build",
"test": "vitest run",
"test:unit": "vitest run --config vitest.unit.config.js",
"test:web": "playwright test",
"lint": "oxlint --type-aware --tsconfig=tsconfig.json src/ && oxlint mobile/src/",
"format:check": "oxfmt --check src/ test/",
"check": "bun run lint && bun run format:check && bun x tsc --noEmit",
"lint:web": "cd web && bun run lint",
"docs:build": "cd docs && bun run build",
"validate:core": "bun run lint && bun run format:check && bun run build:ts && bun run build:worker && bun run docs:build && bun run test:unit",
"validate:web": "bun run build:web && bun run lint:web && bun run test:web",
"validate:full": "bun run validate:core && bun run validate:web",
"validate": "bun run validate:core",
"build:binaries": "bun run scripts/build-binaries.ts",
"generate:openapi": "bun run scripts/generate-openapi.ts",
"prepare": "husky"
},
"engines": {
"bun": ">=1.3.5"
},
"dependencies": {
"@orpc/openapi": "^1.13.2",
"@orpc/server": "^1.13.2",
"@orpc/zod": "^1.13.2",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"ink": "^6.6.0",
"ink-text-input": "^6.0.0",
"proper-lockfile": "^4.1.2",
"ws": "^8.18.3",
"yaml": "^2.3.4",
"zod": "^4.3.4"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/bun": "^1.3.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.1",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.8",
"@types/ws": "^8.18.1",
"husky": "^9.1.7",
"oxfmt": "^0.21.0",
"oxlint": "^1.36.0",
"oxlint-tsgolint": "^0.11.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5.6.3",
"vitest": "^4.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/gricha/perry.git"
},
"keywords": [
"docker",
"development",
"perry",
"cli",
"docker-in-docker",
"ssh"
],
"author": "gricha",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}