forked from patlux/pi-commandcode-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.07 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
{
"name": "omp-cmd",
"version": "0.1.0",
"description": "omp plugin for Command Code API (commandcode.ai)",
"type": "module",
"keywords": [
"omp-plugin",
"omp-extension",
"commandcode",
"provider"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/patlux/omp-commandcode.git"
},
"homepage": "https://github.com/patlux/omp-commandcode#readme",
"bugs": {
"url": "https://github.com/patlux/omp-commandcode/issues"
},
"files": [
"index.ts",
"src/",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE"
],
"omp": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"typescript": "^5.8.0"
},
"peerDependencies": {
"@oh-my-pi/pi-ai": "^16.0.0",
"@oh-my-pi/pi-catalog": "^16.0.0",
"@oh-my-pi/pi-coding-agent": "^16.0.0"
},
"peerDependenciesMeta": {
"@oh-my-pi/pi-ai": {
"optional": true
},
"@oh-my-pi/pi-catalog": {
"optional": true
},
"@oh-my-pi/pi-coding-agent": {
"optional": true
}
}
}