forked from aws/amazon-q-developer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.32 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
{
"name": "@amzn/autocomplete",
"private": true,
"version": "1.0.0",
"repository": "https://github.com/aws/amazon-q-developer-cli",
"type": "module",
"scripts": {
"set-host": "fig settings developer.autocomplete.host http://localhost:3124",
"remove-host": "fig settings developer.autocomplete.host --delete",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"serve": "vite preview --port 3124",
"test": "vitest",
"lint": "eslint src --report-unused-disable-directives && prettier --check src",
"lint:fix": "eslint src --fix && prettier --write src",
"clean": "rm -rf dist"
},
"browserslist": [
"defaults",
"Safari >= 11"
],
"dependencies": {
"@aws/amazon-q-developer-cli-api-bindings-wrappers": "workspace:^",
"@aws/amazon-q-developer-cli-api-bindings": "workspace:~",
"@aws/amazon-q-developer-cli-autocomplete-parser": "workspace:^",
"@aws/amazon-q-developer-cli-proto": "workspace:^",
"@aws/amazon-q-developer-cli-shell-parser": "workspace:^",
"@bufbuild/protobuf": "2.2.5",
"@fig/autocomplete-helpers": "^2.0.0",
"@fig/autocomplete-shared": "^1.1.2",
"@juggle/resize-observer": "^3.4.0",
"deep-object-diff": "^1.1.9",
"loglevel": "^1.9.2",
"react-dom": "^18.3.1",
"react-window": "^1.8.11",
"react": "^18.3.1",
"tailwind-merge": "^3.2.0",
"use-resize-observer": "^9.1.0",
"util": "^0.12.5",
"zustand": "^4.5.6"
},
"devDependencies": {
"@amzn/eslint-config": "workspace:^",
"@amzn/types": "workspace:^",
"@aws/amazon-q-developer-cli-fuzzysort": "workspace:^",
"@aws/amazon-q-developer-cli-shared": "workspace:^",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.17",
"@types/react-dom": "^18.3.5",
"@types/react-window": "^1.8.8",
"@types/react": "^18.3.18",
"@types/semver": "^7.7.0",
"@vitejs/plugin-legacy": "^6.1.1",
"@vitejs/plugin-react": "^4.3.4",
"@withfig/autocomplete-types": "^1.31.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.18.0",
"postcss": "^8.5.3",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"terser": "^5.39.0",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vitest": "^3.0.8"
},
"bundledDependencies": [
"@aws/amazon-q-developer-cli-fuzzysort",
"@aws/amazon-q-developer-cli-shared"
]
}