-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 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
{
"name": "@commit-generator/ai-models",
"version": "1.1.1",
"description": "AI models factory and schemas for the Commit Generator project",
"author": "JulioC090",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./schemes": {
"types": "./dist/schemes.d.ts",
"import": "./dist/schemes.mjs",
"require": "./dist/schemes.js",
"default": "./dist/schemes.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/JulioC090/commit-generator.git",
"directory": "packages/ai-models"
},
"bugs": {
"url": "https://github.com/JulioC090/commit-generator/issues"
},
"license": "MIT",
"scripts": {
"prepare": "node scripts/generateDynamicFiles.mjs",
"precommit": "node scripts/validateAIModels.mjs",
"prebuild": "node scripts/generateDynamicFiles.mjs",
"build": "tsup --format cjs,esm",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit -p ."
},
"dependencies": {
"ajv": "^8.17.1",
"ollama": "^0.5.13",
"openai": "^4.77.0"
},
"devDependencies": {
"@commit-generator/eslint-config": "workspace:^",
"@commit-generator/typescript-config": "workspace:^",
"@types/node": "^22.10.2",
"eslint": "9.19.0",
"ts-morph": "^25.0.1"
}
}