-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.37 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 4.37 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@aws/agentcore",
"version": "0.3.0-preview.2.1",
"description": "CLI for Amazon Bedrock AgentCore",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aws/agentcore-cli.git"
},
"homepage": "https://github.com/aws/agentcore-cli",
"bugs": {
"url": "https://github.com/aws/agentcore-cli/issues"
},
"keywords": [
"aws",
"amazon",
"bedrock",
"agentcore",
"cli",
"agents",
"ai",
"cdk",
"langchain",
"langgraph",
"openai",
"anthropic",
"google-adk",
"strands"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"agentcore": "dist/cli/index.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"scripts"
],
"scripts": {
"preinstall": "node scripts/check-old-cli.mjs",
"build": "npm run build:lib && npm run build:cli && npm run build:assets",
"build:lib": "tsc -p tsconfig.build.json",
"build:cli": "node esbuild.config.mjs",
"build:assets": "node scripts/copy-assets.mjs",
"cli": "npx tsx src/cli/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"secrets:check": "secretlint '**/*'",
"security:audit": "npm audit --audit-level=high",
"clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",
"prepare": "husky",
"test": "vitest run --project unit",
"test:all": "vitest run",
"test:watch": "vitest --project unit",
"test:integ": "vitest run --project integ",
"test:unit": "vitest run --project unit --coverage",
"test:e2e": "vitest run --project e2e",
"test:update-snapshots": "vitest run --project unit --update"
},
"dependencies": {
"@aws-cdk/toolkit-lib": "^1.16.0",
"@aws-sdk/client-bedrock-agentcore": "^3.893.0",
"@aws-sdk/client-bedrock-agentcore-control": "^3.893.0",
"@aws-sdk/client-bedrock-runtime": "^3.893.0",
"@aws-sdk/client-cloudformation": "^3.893.0",
"@aws-sdk/client-cloudwatch-logs": "^3.893.0",
"@aws-sdk/client-resource-groups-tagging-api": "^3.893.0",
"@aws-sdk/client-sts": "^3.893.0",
"@aws-sdk/credential-providers": "^3.893.0",
"@commander-js/extra-typings": "^14.0.0",
"@smithy/shared-ini-file-loader": "^4.4.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"fflate": "^0.8.2",
"handlebars": "^4.7.8",
"ink": "^6.6.0",
"ink-link": "5.0.0",
"ink-spinner": "^5.0.0",
"react": "^19.2.3",
"zod": "^4.3.5"
},
"peerDependencies": {
"aws-cdk-lib": "^2.234.1",
"constructs": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@secretlint/secretlint-rule-preset-recommend": "^11.3.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "^4.0.18",
"aws-cdk-lib": "^2.240.0",
"constructs": "^10.4.4",
"esbuild": "^0.27.2",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-security": "^4.0.0",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"secretlint": "^11.3.0",
"tsx": "^4.21.0",
"typescript": "^5",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.18"
},
"overridesComments": {
"minimatch": "GHSA-3ppc-4f35-3m26: minimatch <10.2.1 has ReDoS via repeated wildcards. Multiple transitive deps (eslint, typescript-eslint, eslint-plugin-import, eslint-plugin-react, prettier-plugin-sort-imports) pin older versions. Remove this override once upstream packages update their minimatch dependency to >=10.2.1."
},
"overrides": {
"minimatch": "10.2.1"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=10"
],
"*.{ts,tsx,js,jsx,json,md,css,html,yml,yaml}": [
"prettier --check"
],
"*": [
"secretlint"
]
}
}