-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "opencode-pocket",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Mobile-first web control surface for OpenCode sessions",
"license": "MIT",
"bin": {
"opencode-pocket": "bin/opencode-pocket.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbogut/opencode-pocket.git"
},
"homepage": "https://github.com/pbogut/opencode-pocket#readme",
"bugs": "https://github.com/pbogut/opencode-pocket/issues",
"scripts": {
"start": "bun bin/opencode-pocket.mjs",
"dev": "bun --watch bin/opencode-pocket.mjs --dev",
"build": "bun scripts/build.mjs",
"test": "bun test --path-ignore-patterns=dist test packages/opencode-pocket-plugin/tui.test.js",
"test:binary": "bun scripts/test-binary.mjs ./dist/opencode-pocket",
"check": "bun scripts/check.mjs 'bin/**/*.mjs' 'src/**/*.mjs' 'public/**/*.js' 'scripts/**/*.mjs'"
},
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"bonjour-service": "^1.4.4",
"dotenv": "^17.4.2",
"web-push": "^3.6.7"
}
}