forked from caching-tools/next-shared-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 KB
/
package.json
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": "diffscribe",
"version": "0.2.0",
"description": "An intelligent CLI tool designed to automatically generate meaningful commit messages using Git diffstat, status, and insights from OpenAI and you",
"homepage": "https://github.com/caching-tools/next-shared-cache/tree/canary/packages/diffscribe",
"bugs": "https://github.com/caching-tools/next-shared-cache/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/caching-tools/next-shared-cache.git"
},
"license": "MIT",
"author": {
"name": "Arseny Kruglikov",
"email": "caching.tools@proton.me"
},
"type": "module",
"module": "./dist/diffscribe.js",
"bin": {
"diffscribe": "./dist/diffscribe.js"
},
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"clean": "rimraf ./dist ./.turbo ./node_modules",
"dev": "tsup --watch",
"lint": "eslint ."
},
"devDependencies": {
"@neshca/tsconfig": "*",
"@types/node": "20.8.10",
"eslint-config-neshca": "*",
"rimraf": "5.0.5",
"tsup": "7.2.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"dotenv": "^16.3.1",
"openai": "^4.12.3"
}
}