@aws/agent-inspector 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@aws/agent-inspector",
3
+ "version": "0.1.0",
4
+ "description": "A visual inspector for debugging and monitoring AI agents",
5
+ "author": "Amazon Web Services",
6
+ "license": "Apache-2.0",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/aws/agent-inspector.git"
10
+ },
11
+ "homepage": "https://github.com/aws/agent-inspector",
12
+ "type": "module",
13
+ "engines": {
14
+ "node": ">=20"
15
+ },
16
+ "scripts": {
17
+ "clean": "rm -rf dist-assets && rm -rf node_modules",
18
+ "prepare": "husky",
19
+ "build": "vite build",
20
+ "dev": "vite",
21
+ "preview": "vite preview",
22
+ "test": "vitest run --coverage",
23
+ "lint": "eslint --cache src && prettier --check --cache .",
24
+ "lint:fix": "eslint --fix --cache src && prettier --write --cache .",
25
+ "format": "eslint --fix --cache src && prettier --write --cache .",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "files": [
29
+ "dist-assets/"
30
+ ],
31
+ "dependencies": {
32
+ "@ag-ui/core": "^0.0.52",
33
+ "eslint-plugin-import": "^2.32.0",
34
+ "eslint-plugin-prettier": "^5.5.5",
35
+ "eslint-plugin-react": "^7.37.5",
36
+ "eslint-plugin-react-hooks": "^7.0.1",
37
+ "eslint-plugin-testing-library": "^7.16.0",
38
+ "lucide-react": "^0.575.0",
39
+ "react": "^19.1.0",
40
+ "react-dom": "^19.1.0",
41
+ "react-markdown": "^10.1.0",
42
+ "remark-gfm": "^4.0.1"
43
+ },
44
+ "lint-staged": {
45
+ "*.{js,jsx,ts,tsx,mjs}": [
46
+ "eslint --fix --cache",
47
+ "prettier --write --cache"
48
+ ],
49
+ "*.{json,md,scss,css,html,yaml,yml}": [
50
+ "prettier --write --cache"
51
+ ]
52
+ },
53
+ "devDependencies": {
54
+ "@eslint/js": "^9.35.0",
55
+ "@types/node": "^25.3.5",
56
+ "@types/react": "^19.1.0",
57
+ "@types/react-dom": "^19.1.0",
58
+ "@vitejs/plugin-react": "^4.3.1",
59
+ "@vitest/coverage-v8": "^4.0.17",
60
+ "eslint": "^9.39.2",
61
+ "eslint-config-prettier": "^10.1.8",
62
+ "husky": "^9.1.7",
63
+ "lint-staged": "^16.3.2",
64
+ "prettier": "^3.8.0",
65
+ "sass": "^1.97.3",
66
+ "tsx": "^4.7.3",
67
+ "typescript": "~5.9.3",
68
+ "typescript-eslint": "^8.53.0",
69
+ "vite": "^6.3.0",
70
+ "vitest": "^4.0.17"
71
+ }
72
+ }