generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"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": {
"@opentelemetry/sdk-trace-node": "^1.30.1",
"@strands-agents/sdk": "github:strands-agents/sdk-typescript",
"@types/express": "^5.0.5",
"@types/turndown": "^5.0.6",
"express": "^5.1.0",
"fast-glob": "^3.3.3",
"node-fetch": "^3.3.2",
"node-html-parser": "^7.1.0",
"p-limit": "^7.3.0",
"prettier": "^3.6.2",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/starlight": "^0.37.3",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"@types/node": "^24.10.1",
"acorn": "^8.14.0",
"astro": "^5.6.1",
"js-yaml": "^4.1.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"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"
}
}