This repository was archived by the owner on May 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.75 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
{
"name": "@ai-ecoverse/pi-grok",
"version": "0.1.2",
"description": "DEPRECATED — Grok Build provider for Pi Coding Agent. This package is no longer maintained. Please migrate to stnly/pi-grok: https://github.com/stnly/pi-grok",
"deprecated": "This package (@ai-ecoverse/pi-grok) is deprecated and will receive no further updates. Please migrate to the official stnly/pi-grok extension, which provides native OAuth login, live model discovery, and better xAI Responses API support: https://github.com/stnly/pi-grok",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "rm -rf dist && tsc",
"test": "echo \"No tests yet\""
},
"keywords": [
"pi",
"grok",
"xai",
"ai",
"extension",
"provider",
"grok-build",
"deprecated"
],
"author": "Lars Trieloff",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ai-ecoverse/pi-grok.git"
},
"bugs": {
"url": "https://github.com/stnly/pi-grok/issues"
},
"homepage": "https://github.com/stnly/pi-grok#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@earendil-works/pi-ai": ">=0.74.0",
"@earendil-works/pi-coding-agent": ">=0.74.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "25.8.0",
"semantic-release": "25.0.3",
"typescript": "6.0.3"
},
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.74.0",
"@earendil-works/pi-coding-agent": ">=0.74.0"
}
}