generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.56 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.56 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
{
"name": "docs",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "astro build",
"build:all": "npm run sdk:clone && npm run sdk:generate && npm run build",
"dev": "astro dev",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"typecheck:snippets": "npm run typecheck --prefix test-snippets",
"format": "prettier --write docs",
"format:check": "prettier --check docs",
"clean": "rm -rf .build && rm -rf .astro",
"preview": "astro preview",
"cms:build": "npm run build:all",
"sdk:clone": "tsx scripts/clone-sdks.ts",
"sdk:generate:py": "command -v uv >/dev/null 2>&1 && uv run scripts/api-generation-python.py || (pip install pydoc-markdown>=4.8.2 && python scripts/api-generation-python.py)",
"sdk:generate:ts": "tsx scripts/api-generation-typescript.ts",
"sdk:generate": "npm run sdk:generate:py && npm run sdk:generate:ts",
"routes:update": "tsx scripts/update-known-routes.ts",
"astro": "astro"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@a2a-js/sdk": "^0.3.10",
"@astrojs/rss": "^4.0.15",
"@aws-sdk/client-s3": "^3.943.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.2",
"@opentelemetry/sdk-trace-node": "^1.30.1",
"@strands-agents/sdk": "github:strands-agents/sdk-typescript",
"@types/express": "^5.0.5",
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.16.0",
"@types/turndown": "^5.0.6",
"astro-og-canvas": "^0.10.1",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"markdown-it": "^14.1.1",
"mdast-util-to-string": "^4.0.0",
"node-fetch": "^3.3.2",
"node-html-parser": "^7.1.0",
"p-limit": "^7.3.0",
"prettier": "^3.6.2",
"reading-time": "^1.5.0",
"sanitize-html": "^2.17.1",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"vite": "^8.0.0"
},
"devDependencies": {
"@astrojs/starlight": "^0.38.1",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"acorn": "^8.14.0",
"astro": "^6.0.5",
"js-yaml": "^4.1.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"sitemapper": "^4.1.4",
"tsx": "^4.21.0",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.10.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vitest": "^4.0.18"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"trailingComma": "es5"
}
}