forked from strands-agents/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.68 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"name": "docs",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "tsc --noEmit",
"format": "prettier --write docs",
"format:check": "prettier --check docs",
"docs:clone": "rm -rf sdk-typescript && git clone https://github.com/strands-agents/sdk-typescript.git",
"docs:ts": "typedoc --options typedoc.json",
"serve": "npm run docs:clone && npm run docs:ts && mkdocs serve",
"clean": "rm -rf docs/api-reference/typescript node_modules",
"cms:dev": "astro dev",
"cms:start": "astro dev",
"cms:build": "npm run docs:revert && npm run docs:update && astro build",
"cms:preview": "astro preview",
"cms:test": "vitest run",
"docs:update": "tsx scripts/update-docs.ts",
"docs:revert": "git checkout HEAD -- docs/ && git clean -d -f docs/",
"astro": "astro"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@strands-agents/sdk": "github:strands-agents/sdk-typescript",
"@types/express": "^5.0.5",
"express": "^5.1.0",
"prettier": "^3.6.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",
"astro": "^5.6.1",
"acorn": "^8.14.0",
"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",
"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"
}
}