-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.06 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@nomomon/ai-sdk-provider-github-copilot",
"version": "0.2.0",
"description": "AI SDK provider for GitHub Copilot - Use Copilot CLI via Vercel AI SDK",
"keywords": [
"ai-sdk",
"github-copilot",
"copilot-sdk",
"language-model",
"llm"
],
"homepage": "https://github.com/nomomon/ai-sdk-provider-github-copilot",
"repository": {
"type": "git",
"url": "git+https://github.com/nomomon/ai-sdk-provider-github-copilot.git"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"dev": "tsup --watch",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"example:basic": "npm run build && npx tsx examples/basic-usage.ts",
"example:streaming": "npm run build && npx tsx examples/streaming.ts",
"example:tools": "npm run build && npx tsx examples/tools.ts",
"example:tools-ai-sdk": "npm run build && npx tsx examples/tools-ai-sdk.ts",
"prepare": "lefthook install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.0",
"@ai-sdk/provider-utils": "^4.0.1",
"@github/copilot-sdk": "^0.1.20"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/node": "^20.17.24",
"@vitest/coverage-v8": "^3.2.4",
"ai": "^6.0.0",
"lefthook": "2.0.16",
"tsup": "^8.5.0",
"typescript": "^5.6.0",
"vitest": "^3.2.0",
"zod": "^4.0.0"
},
"peerDependencies": {
"ai": "^6.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}