-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
93 lines (93 loc) · 3.27 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
{
"name": "@aws/language-server-runtimes",
"version": "0.2.37",
"description": "Runtimes to host Language Servers for AWS",
"repository": {
"type": "git",
"url": "https://github.com/aws/language-server-runtimes",
"directory": "runtimes"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rm -rf out/",
"precompile": "npm run generate-types",
"compile": "tsc --build && npm run copy-files && npm run resolve-schemas",
"fix:prettier": "prettier . --write",
"format": "npm run fix:prettier",
"prepare": "husky install",
"prepub:copyFiles": "shx cp ../.npmignore CHANGELOG.md ../LICENSE ../NOTICE README.md ../SECURITY.md package.json out/",
"prepub": "npm run clean && npm run test && npm run compile && npm run prepub:copyFiles",
"pub": "cd out && npm publish",
"test:unit": "ts-mocha -b './**/*.test.ts'",
"test": "npm run test:unit",
"preversion": "npm run test",
"version": "npm run compile && git add -A .",
"copy-files": "copyfiles runtimes/operational-telemetry/types/generated/* out",
"generate-types": "ts-node ./script/generate-types.ts",
"resolve-schemas": "ts-node ./script/resolve-schema-refs.ts"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.9.1",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-cognito-identity": "^3.734.0",
"@aws/language-server-runtimes-types": "^0.1.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.57.2",
"@opentelemetry/resources": "^1.30.1",
"@opentelemetry/sdk-metrics": "^1.30.1",
"@opentelemetry/sdk-node": "^0.57.2",
"@opentelemetry/sdk-trace-base": "^1.30.1",
"@opentelemetry/semantic-conventions": "^1.28.0",
"@smithy/node-http-handler": "^4.0.2",
"@smithy/protocol-http": "^5.0.1",
"@smithy/signature-v4": "^5.0.1",
"ajv": "^8.17.1",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.9",
"hpagent": "^1.2.0",
"jose": "^5.9.6",
"mac-ca": "^3.1.1",
"rxjs": "^7.8.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.5",
"win-ca": "^3.5.1"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.13.1",
"@types/node-forge": "^1.3.11",
"assert": "^2.0.0",
"copyfiles": "^2.4.1",
"husky": "^9.1.7",
"json-schema-to-typescript": "^15.0.4",
"mock-fs": "^5.5.0",
"node-forge": "^1.3.1",
"prettier": "3.4.2",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"ts-sinon": "^2.0.2",
"typescript": "^5.7.3"
},
"typesVersions": {
"*": {
"browser": [
"./out/runtimes/webworker.d.ts"
]
}
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf"
}
}