-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "java-llm-extractor",
"version": "1.0.0",
"description": "Extract Java JSF application menu architecture to LLM-friendly Markdown.",
"keywords": [
"menu-architecture",
"llm",
"extractor",
"jsf",
"java",
"logistics"
],
"license": "MIT",
"author": "Andre Mesquita",
"main": "dist/index.js",
"bin": "dist/index.js",
"pkg": {
"assets": [
"dist/**/*"
],
"targets": [
"node18-win-x64",
"node18-linux-x64"
]
},
"scripts": {
"start": "node ./index.ts",
"dev": "tsx --watch index.ts",
"build": "tsc index.ts --outDir dist --esModuleInterop --skipLibCheck --target ES2018 --module CommonJS --types node && pkg . --targets node18-win-x64,node18-linux-x64 --out-path bin",
"sample": "npx tsx index.ts 'C:\\Projetos\\LogOne\\LogOne-2.0-master2.4' 'menu-architecture.md'"
},
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^18.0.0",
"pkg": "^5.8.1",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
}
}