-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "agent-readable-ts",
"version": "0.1.5",
"description": "Attach agent-oriented documentation to any class, object, or function",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zydo/agent-readable-ts.git"
},
"bugs": {
"url": "https://github.com/zydo/agent-readable-ts/issues"
},
"homepage": "https://github.com/zydo/agent-readable-ts#readme",
"bin": {
"agent-readable-ts": "dist/src/cli.js"
},
"files": [
"docs",
"dist/src"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"cli": "tsc -p tsconfig.json && node dist/src/cli.js",
"prepack": "npm run build",
"test": "npm run build && node --test --experimental-test-module-mocks dist/test/*.test.js",
"test:coverage": "npm run build && node --test --experimental-test-module-mocks --experimental-test-coverage --test-coverage-exclude='dist/test/*' dist/test/*.test.js"
},
"keywords": [
"agent",
"ai-agent",
"llm",
"documentation",
"protocol"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"typescript": "^5.5.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"commander": "^15.0.0",
"tsx": "^4.19.0"
}
}