-
Notifications
You must be signed in to change notification settings - Fork 426
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@aws/amazon-q-developer-cli-api-bindings",
"version": "0.2.0",
"license": "MIT OR Apache-2.0",
"author": "Amazon Web Services",
"repository": "https://github.com/aws/amazon-q-developer-cli",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && npm run generate-requests && tsc",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --write src",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"generate-requests": "tsx codegen/generate-requests.ts && prettier -w src/requests.ts"
},
"dependencies": {
"@aws/amazon-q-developer-cli-proto": "workspace:^",
"@bufbuild/protobuf": "2.2.3"
},
"devDependencies": {
"@amzn/eslint-config": "workspace:^",
"@amzn/tsconfig": "workspace:^",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.13.10",
"@typescript/analyze-trace": "^0.10.1",
"eslint": "^9.18.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"ts-morph": "^25.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{ts,tsx}": "npx eslint --cache --fix"
}
}