-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.15 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.15 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
{
"type": "module",
"name": "omp-github-action-watcher",
"version": "1.0.0",
"description": "Oh My Pi plugin for watching GitHub Actions workflow runs from an OMP session.",
"homepage": "https://github.com/maximhar/omp-github-action-watcher#readme",
"author": "Maxim Harizanov",
"contributors": [
"Can Boluk"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maximhar/omp-github-action-watcher.git"
},
"bugs": {
"url": "https://github.com/maximhar/omp-github-action-watcher/issues"
},
"keywords": [
"github",
"github-actions",
"watcher",
"extension",
"oh-my-pi",
"omp",
"sessions"
],
"scripts": {
"check": "tsgo -p tsconfig.json",
"test": "bun test",
"verify": "bun run test && bun run check",
"prepare:publish": "bun scripts/prepare-publish-version.mjs"
},
"peerDependencies": {
"@oh-my-pi/pi-coding-agent": "^13"
},
"devDependencies": {
"@types/bun": "^1.3",
"@typescript/native-preview": "^7.0.0-dev.20260302.1"
},
"engines": {
"bun": ">=1.3.7"
},
"publishConfig": {
"access": "public"
},
"omp": {
"extensions": [
"./src/extension.ts"
]
},
"files": [
"src"
]
}