forked from aws/agentcore-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.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
{
"name": "agentcore",
"version": "0.3.0-preview.1.0",
"description": "CLI for Amazon Bedrock AgentCore",
"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:update-snapshots": "vitest run --project unit --update"
},
"dependencies": {
"@aws-cdk/toolkit-lib": "^1.13.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-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.0",
"@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.234.1",
"constructs": "^10.4.4",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"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": "^3.0.1",
"husky": "^9.1.7",
"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"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --max-warnings=10"
],
"*.{ts,tsx,js,jsx,json,md,css,html,yml,yaml}": [
"prettier --check"
],
"*": [
"secretlint"
]
}
}