generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 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": "codewhisperer-for-command-line-companion",
"version": "1.0.0",
"private": true,
"displayName": "Amazon Q for command line",
"description": "The IDE companion extension for the Amazon Q for command line desktop app",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"bugs": {
"url": "https://github.com/aws/q-command-line-discussions"
},
"publisher": "amazonwebservices",
"main": "./extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"build": "vsce package --skip-license --allow-missing-repository",
"build-install": "pnpm run build && code --install-extension codewhisperer-for-command-line-companion-*.vsix"
},
"fig": {
"build": {
"description": "Build extension and install in VSCode"
},
"package": {
"description": "Package extension as .vsix file"
}
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.20",
"@types/vscode": "~1.80.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^2.32.0",
"eslint": "^9.18.0",
"glob": "^11.0.2",
"globals": "^16.1.0",
"mocha": "^11.4.0",
"typescript": "^5.8.3"
}
}