-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.91 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@llm-dev-ops/llm-forge",
"version": "1.0.0",
"description": "Cross-provider SDK generator for Large Language Model APIs",
"keywords": [
"llm",
"sdk",
"generator",
"openai",
"anthropic",
"code-generation",
"typescript",
"rust",
"python",
"java",
"go",
"csharp"
],
"homepage": "https://github.com/globalbusinessadvisors/llm-forge",
"bugs": {
"url": "https://github.com/globalbusinessadvisors/llm-forge/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/globalbusinessadvisors/llm-forge.git"
},
"license": "Apache-2.0",
"author": "LLM-Dev-Ops Team",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"llm-forge": "./dist/cli/index.js"
},
"files": [
"dist",
"templates",
"schemas",
"LICENSE",
"README.md"
],
"scripts": {
"gcp-build": "",
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist coverage .turbo node_modules/.cache",
"dev": "tsx src/cli/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"bench": "vitest bench --run",
"bench:watch": "vitest bench",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"prepare": "husky install || true",
"prepublishOnly": "npm run build && npm run test",
"quality": "npm run type-check && npm run lint && npm run format:check && npm run test:coverage",
"cli": "tsx src/cli/index.ts"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@readme/openapi-parser": "^2.6.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"claude-flow": "^2.7.41",
"commander": "^12.0.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"openapi-types": "^12.1.3",
"ora": "^8.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}