-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.52 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
{
"name": "omp-plannotator",
"version": "0.1.0",
"private": true,
"description": "OMP extension adapter for Plannotator visual review and plan mode.",
"license": "MIT",
"author": "zigai",
"repository": {
"type": "git",
"url": "git+https://github.com/zigai/omp-plannotator.git"
},
"files": [
"src"
],
"type": "module",
"scripts": {
"lint": "oxlint -c ./oxlint.config.ts .",
"lint:fix": "oxlint -c ./oxlint.config.ts . --fix",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check": "npm run format:check && npm run lint && npm run typecheck && npm test",
"verify": "npm run check"
},
"dependencies": {
"@plannotator/pi-extension": "0.27.10"
},
"devDependencies": {
"@oh-my-pi/hashline": "^17.2.12",
"@oh-my-pi/pi-agent-core": "^17.2.12",
"@oh-my-pi/pi-catalog": "17.2.12",
"@oh-my-pi/pi-coding-agent": "^17.2.12",
"@oh-my-pi/pi-tui": "^17.2.12",
"@oh-my-pi/pi-utils": "^17.2.12",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.10",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"oxlint-rules": "latest",
"oxlint-tsgolint": "^7.0.2001",
"typebox": "1.3.8",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@oh-my-pi/hashline": "*",
"@oh-my-pi/pi-coding-agent": "*"
},
"engines": {
"node": ">=22.19.0 <27"
},
"packageManager": "npm@11.18.0",
"omp": {
"extensions": [
"./src/index.ts"
]
}
}