-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
48 lines (48 loc) · 1.4 KB
/
package.json
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
{
"name": "@copilot-extensions/preview-sdk",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"version": "0.0.0-development",
"keywords": [
"ai",
"github",
"sdk",
"copilot-extension"
],
"repository": "github:copilot-extensions/preview-sdk.js",
"exports": {
"default": "./index.js",
"types": "./index.d.ts"
},
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "MIT",
"description": "JavaScript SDK for Copilot Extensions",
"dependencies": {
"@octokit/request": "^9.1.3",
"@octokit/request-error": "^6.1.4"
},
"scripts": {
"test": "npm run test:code && npm run test:tsc && npm run test:types",
"test:code": "c8 --100 ava test/*.test.js",
"test:code:update-snapshots": "ava --update-snapshots",
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
"test:types": "tsd",
"lint": "prettier --check \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"**/*.{js,json,ts,md}\" \".github/**/*.yml\"",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html"
},
"devDependencies": {
"@types/node": "^22.5.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"tsd": "^0.31.1",
"typescript": "^5.5.4",
"undici": "^6.19.7"
}
}