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
29 lines (29 loc) · 980 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 980 Bytes
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
{
"name": "amazon-q-for-cli-gnome-integration",
"author": "Amazon Q Developer",
"version": "1.0.0",
"description": "Adds support for Amazon Q for CLI completions with GNOME shell",
"repository": "git@github.com/aws/amazon-q-for-command-line",
"private": true,
"type": "module",
"scripts": {
"all": "node ./build-scripts/all.js",
"build": "npx tsc && node ./build-scripts/extension.js",
"types": "node ./build-scripts/types.js",
"clean": "rm -f ./types/.*.d.ts && rm -f *.zip",
"lint": "eslint src build-scripts && prettier --check src build-scripts types",
"lint:fix": "eslint --fix src build-scripts && prettier --write src build-scripts types"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "9.18.0",
"globals": "^16.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
},
"dependencies": {
"@girs/gjs": "4.0.0-beta.23",
"@girs/gnome-shell": "^46.0.2"
},
"sideEffects": false
}