-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.47 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
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
109
110
111
112
113
114
115
{
"name": "@aws/lsp-codewhisperer",
"version": "0.0.119",
"description": "CodeWhisperer Language Server",
"main": "out/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/language-servers"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"compile": "tsc --build",
"fix": "npm run fix:prettier",
"fix:prettier": "prettier . --write",
"lint": "npm run lint:src",
"lint:bundle:webworker": "webpack --config webpack.lint.config.js && eslint bundle/aws-lsp-codewhisperer-webworker.js # Verify compatibility with web runtime target",
"lint:src": "eslint src/ --ext .ts,.tsx",
"test:unit": "ts-mocha --timeout 0 -b \"./src/**/*.test.ts\"",
"test:unit:coverage": "c8 ts-mocha --timeout 0 -b \"./src/**/*.test.ts\"",
"test": "npm run lint && npm run test:unit",
"test:coverage": "npm run lint && npm run test:unit:coverage",
"coverage:report": "c8 report --reporter=html --reporter=text",
"coverage:check": "c8 check-coverage --lines 80 --functions 80 --branches 50 --statements 80",
"prepack": "npm run compile && ts-node ../../script/link_bundled_dependencies.ts",
"postinstall": "node ./script/install_transitive_dep.js"
},
"dependencies": {
"@amazon/elastic-gumby-frontend-client": "file:../../core/atx-fes-client/amazon-elastic-gumby-frontend-client-1.1.0.tgz",
"@amzn/amazon-q-developer-streaming-client": "file:../../core/q-developer-streaming-client/amzn-amazon-q-developer-streaming-client-1.0.0.tgz",
"@amzn/codewhisperer": "file:../../core/codewhisperer/amzn-codewhisperer-1.0.0.tgz",
"@amzn/codewhisperer-runtime": "file:../../core/codewhisperer-runtime/amzn-codewhisperer-runtime-1.0.0.tgz",
"@amzn/codewhisperer-streaming": "file:../../core/codewhisperer-streaming/amzn-codewhisperer-streaming-1.0.0.tgz",
"@aws-sdk/types": "^3.734.0",
"@aws-sdk/util-arn-parser": "^3.723.0",
"@aws-sdk/util-retry": "^3.374.0",
"@aws/chat-client-ui-types": "0.1.68",
"@aws/language-server-runtimes": "^0.3.17",
"@aws/lsp-core": "^0.0.21",
"@modelcontextprotocol/sdk": "^1.23.0",
"@mozilla/readability": "^0.6.0",
"@smithy/node-http-handler": "^2.5.0",
"adm-zip": "^0.5.10",
"archiver": "^7.0.1",
"async-mutex": "^0.5.0",
"axios": "^1.8.4",
"chokidar": "^4.0.3",
"deepmerge": "^4.3.1",
"diff": "^7.0.0",
"encoding-japanese": "^2.2.0",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
"fdir": "^6.4.3",
"fuse.js": "^7.1.0",
"got": "^11.8.5",
"hpagent": "^1.2.0",
"ignore": "^7.0.3",
"image-size": "^2.0.2",
"js-md5": "^0.8.3",
"jszip": "^3.10.1",
"lokijs": "^1.5.12",
"picomatch": "^4.0.2",
"shlex": "2.1.2",
"typescript-collections": "^1.3.3",
"uuid": "^11.0.5",
"vscode-uri": "^3.1.0",
"ws": "^8.18.0",
"xml2js": "^0.6.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^6.0.2",
"@types/diff": "^7.0.2",
"@types/encoding-japanese": "^2.2.1",
"@types/escape-html": "^1.0.4",
"@types/ignore-walk": "^4.0.3",
"@types/local-indexing": "file:./types/types-local-indexing-1.1.0.tgz",
"@types/lokijs": "^1.5.14",
"@types/uuid": "^9.0.8",
"@types/xml2js": "^0.4.14",
"assert": "^2.1.0",
"c8": "^10.1.2",
"copyfiles": "^2.4.1",
"fast-check": "^4.6.0",
"mock-fs": "^5.2.0",
"sinon": "^19.0.2",
"ts-loader": "^9.4.4",
"ts-mocha": "^11.1.0",
"ts-sinon": "^2.0.2",
"vscode-languageserver-textdocument": "^1.0.11",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"bundleDependencies": [
"@amzn/codewhisperer",
"@amzn/codewhisperer-runtime",
"@amzn/codewhisperer-streaming",
"@amzn/amazon-q-developer-streaming-client",
"@amazon/elastic-gumby-frontend-client"
]
}