-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "@netandreus/pi-cursor-provider",
"version": "0.1.4",
"author": {
"name": "Andrei Tokarchuk ",
"email": "netandreus@gmail.com",
"url": "https://tokarchuk.ru"
},
"description": "Pi Coding Agent custom provider that routes requests through the Cursor Agent CLI — use your Cursor subscription models (Claude, GPT, Gemini, Grok…) inside Pi.",
"type": "module",
"keywords": [
"pi-package",
"pi",
"cursor",
"llm",
"ai",
"custom-provider"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/netandreus/pi-cursor-provider.git"
},
"homepage": "https://github.com/netandreus/pi-cursor-provider#readme",
"bugs": {
"url": "https://github.com/netandreus/pi-cursor-provider/issues"
},
"files": [
"index.ts",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./index.ts"
]
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*"
},
"scripts": {
"lint": "npx biome check",
"format": "npx biome check --write",
"typecheck": "npx tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"typescript": "^5.9.3"
}
}