-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1004 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1004 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": "@saidsrc/yargi",
"version": "0.1.1",
"description": "CLI tool for Turkish legal databases. Designed for AI agents and programmatic use.",
"type": "module",
"bin": {
"yargi": "./bin/yargi.js"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"turkish-law",
"legal",
"yargitay",
"danistay",
"bedesten",
"court-decisions",
"cli",
"ai-agent"
],
"author": "Said Surucu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saidsurucu/yargi-cli.git"
},
"homepage": "https://github.com/saidsurucu/yargi-cli",
"dependencies": {
"commander": "^13.0.0",
"turndown": "^7.2.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"@types/node": "^22.0.0",
"@types/turndown": "^5.0.5",
"tsx": "^4.19.0"
},
"engines": {
"node": ">=24.0.0"
}
}