-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.74 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
{
"name": "@openparachute/hub",
"version": "0.7.13",
"description": "parachute — the local hub for the Parachute ecosystem (discovery, ports, lifecycle, soon OAuth).",
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"type": "module",
"module": "src/cli.ts",
"bin": {
"parachute": "src/cli.ts"
},
"workspaces": ["packages/*"],
"files": ["src", "web/ui/dist", "scripts/git-credential-parachute", "README.md", "LICENSE"],
"repository": {
"type": "git",
"url": "https://github.com/ParachuteComputer/parachute-hub.git"
},
"scripts": {
"start": "bun src/cli.ts",
"build:depcheck": "[ ! -f packages/depcheck/package.json ] || [ -f packages/depcheck/dist/index.js ] || bun run --cwd packages/depcheck build",
"build:door-contract": "[ ! -f packages/door-contract/package.json ] || [ -f packages/door-contract/dist/index.js ] || bun run --cwd packages/door-contract build",
"build:packages": "bun run build:depcheck && bun run build:door-contract",
"prepare": "bun run build:packages",
"pretest": "bun run build:packages",
"test": "bun test ./src",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"build:spa": "cd web/ui && bun install --frozen-lockfile && bun run build",
"prepack": "bun run build:spa"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/qrcode": "^1.5.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@node-rs/argon2": "^2.0.2",
"@openparachute/depcheck": "0.1.1",
"@openparachute/door-contract": "^0.7.0",
"jose": "^6.2.2",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4"
}
}