-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"name": "xsai-codex",
"type": "module",
"version": "0.0.2",
"packageManager": "pnpm@10.33.0",
"description": "OpenAI Codex provider for xsAI.",
"author": "Moeru AI",
"license": "MIT",
"homepage": "https://github.com/moeru-ai/xsai-codex",
"repository": "github:moeru-ai/xsai-codex",
"bugs": "https://github.com/moeru-ai/xsai-codex/issues",
"keywords": [
"xsai",
"openai",
"codex"
],
"sideEffects": false,
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "pkgroll",
"bump": "bumpp --no-push",
"dev": "tsx scripts/example.ts",
"lint": "eslint ."
},
"peerDependencies": {
"@xsai-ext/responses": "0.5.0-beta.3"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@clack/prompts": "^1.3.0",
"@moeru/eslint-config": "0.1.0-beta.18",
"@moeru/tsconfig": "0.1.0-beta.18",
"@types/node": "^25.6.2",
"@xsai-ext/responses": "0.5.0-beta.3",
"bumpp": "^11.1.0",
"eslint": "^10.2.0",
"pkgroll": "^2.27.0",
"tsx": "^4.21.0"
}
}