-
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) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1022 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
47
48
49
{
"name": "traceit-cli",
"version": "0.1.2",
"description": "Zero-dependency CLI that indexes code annotations for AI agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"traceit-cli": "bin/traceit-cli.js"
},
"files": [
"dist",
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agents",
"annotations",
"indexing",
"documentation"
],
"license": "MIT",
"author": "Fikri Nurdiansyah",
"repository": {
"type": "git",
"url": "git+https://github.com/Fnz11/traceit-cli.git"
},
"bugs": {
"url": "https://github.com/Fnz11/traceit-cli/issues"
},
"homepage": "https://github.com/Fnz11/traceit-cli",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.19.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
}
}