forked from hieunc229/copilot-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.69 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "captain-stack",
"displayName": "Captain Stack",
"description": "Find snippets codes from Stackoverflow",
"version": "0.0.5",
"publisher": "captainstack",
"icon": "icon.png",
"homepage": "https://github.com/hieunc229/copilot-clone",
"repository": "https://github.com/hieunc229/copilot-clone",
"keywords": [
"code-suggestion",
"copilot",
"code-inference"
],
"engines": {
"vscode": "^1.34.0"
},
"bugs": {
"url": "https://github.com/hieunc229/copilot-clone/issues"
},
"author": {
"name": "Hieu Nguyen",
"url": "https://hieunguyen.info/"
},
"contributors": [
"Kekschen (https://github.com/Kek5chen)",
"Charlie Lin <clin@rollins.edu> (https://clin1234.github.io)"
],
"license": "MIT",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "CaptainStack",
"type": "object",
"properties": {
"captainStack.settings.sites.stackoverflow": {
"title": "stackoverflow.com",
"description": "Enable searching code in StackOverflow",
"type": "boolean",
"default": true
},
"captainStack.settings.sites.githubGist": {
"title": "gist.github.com",
"description": "Enable searching code in Github Gists",
"type": "boolean",
"default": false
},
"captainStack.settings.maxResults": {
"type": "integer",
"description": "Limit the max number of results",
"default": 12
}
}
}
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"download-api": "vscode-dts dev",
"postdownload-api": "vscode-dts main",
"postinstall": "npx vscode-dts dev",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"prebuild": "npm run lint -- --fix",
"build": "vsce package -o ./out-vsix",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.15.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"bufferutil": "^4.0.3",
"esbuild": "^0.12.15",
"eslint": "^7.21.0",
"jest": "^27.5",
"node-loader": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.3",
"typescript": "^4.2.2",
"utf-8-validate": "^5.0.5",
"vscode-dts": "^0.3.3",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@types/jsdom": "^16.2.12",
"jsdom": "^16.6.0",
"linkedom": "^0.11.1",
"node-fetch": "^2.6.1",
"typescript-language-server": "^0.5.4",
"vsce": "^1.96.1",
"vscode": "^1.1.37"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}