-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "@kitlangton/tailcode",
"version": "0.2.8",
"description": "Terminal wizard for publishing OpenCode to your Tailscale tailnet",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kitlangton/tailcode.git"
},
"homepage": "https://github.com/kitlangton/tailcode",
"bugs": {
"url": "https://github.com/kitlangton/tailcode/issues"
},
"keywords": [
"tailscale",
"opencode",
"cli",
"tui",
"bun"
],
"engines": {
"bun": ">=1.3.0"
},
"files": [
"dist/tailcode.js",
"README.md"
],
"bin": {
"tailcode": "./dist/tailcode.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run --conditions=browser --preserve-symlinks --hot src/main.tsx",
"start": "bun run --conditions=browser --preserve-symlinks src/main.tsx",
"showcase": "bun run --conditions=browser --preserve-symlinks src/showcase.tsx",
"showcase:dev": "bun run --conditions=browser --preserve-symlinks --hot src/showcase.tsx",
"typecheck": "tsc -p tsconfig.json --noEmit",
"fmt": "oxfmt --write src bin",
"fmt:check": "oxfmt --check src bin",
"lint": "oxlint src bin",
"check": "bun run typecheck && bun run lint && bun run fmt:check",
"build": "bun run build.ts",
"build:bundle": "bun run build.ts bundle",
"build:compile": "bun run build.ts compile",
"build:release": "bun run build.ts release",
"smoke:bundle": "bun run ./dist/tailcode.js",
"publish:dry": "bun run check && bun run build && bun publish --dry-run",
"publish:npm": "bun run check && bun run build && bun publish"
},
"dependencies": {
"@effect/atom-solid": "4.0.0-beta.12",
"@effect/platform-bun": "4.0.0-beta.12",
"@opentui/core": "0.1.81",
"@opentui/solid": "0.1.81",
"effect": "4.0.0-beta.12",
"qrcode": "1.5.4",
"solid-js": "1.9.11"
},
"devDependencies": {
"@effect/language-service": "0.76.0",
"@effect/vitest": "4.0.0-beta.12",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.9",
"@types/qrcode": "^1.5.6",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"tuistory": "^0.0.16",
"typescript": "^5.8.2",
"vitest": "4.0.18"
}
}