-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1007 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1007 Bytes
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
{
"name": "agentruntime-standard",
"version": "0.4.0",
"type": "module",
"description": "Draft documentation for the Agent Runtime standard.",
"homepage": "https://limecloud.github.io/agentruntime/",
"repository": {
"type": "git",
"url": "git+https://github.com/limecloud/agentruntime.git"
},
"license": "Apache-2.0",
"keywords": [
"agent",
"runtime",
"llm",
"standard"
],
"engines": {
"node": ">=22.0.0"
},
"files": [
"llm.txt",
"llm-full.txt",
"llms.txt",
"llms-full.txt",
"docs/public/llm.txt",
"docs/public/llm-full.txt",
"docs/public/llms.txt",
"docs/public/llms-full.txt",
"docs/public/schemas/",
"docs/public/fixtures/",
"docs/en/",
"docs/zh/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs"
},
"devDependencies": {
"mermaid": "^11.14.0",
"vitepress": "^1.6.4"
}
}