-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "opencode-dosm",
"version": "1.0.0",
"description": "DOSM (Dirty Ol' Session Manager) - Browse, filter, sort, and manage OpenCode sessions from a unified interactive interface",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/krumpstead/opencode-dosm"
},
"author": "krumpstead",
"type": "module",
"exports": {
"./tui": {
"import": "./src/index.ts"
}
},
"engines": {
"opencode": ">=1.18.2"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.4.3",
"@opentui/core": "^0.4.3",
"@opentui/solid": "^0.4.3",
"@opentui/keymap": "^0.4.3",
"solid-js": "^1.9.10"
},
"files": [
"src",
"assets",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node build.mjs",
"clean": "rm -rf ./dist ./$npm_package_name-$npm_package_version.tgz",
"deploy": "npm pack && cd $HOME/.cache/opencode/packages && mkdir $npm_package_name@latest && cd $npm_package_name@latest && npm install $INIT_CWD/opencode-dosm-1.0.0.tgz",
"clean_deploy": "rm -rf $HOME/.cache/opencode/packages/$npm_package_name@latest ./$npm_package_name-$npm_package_version.tgz",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.20.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-jest-mock-import-meta": "^1.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"opencode",
"plugin",
"tui",
"sessions",
"cli"
]
}