-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@snelusha/noto",
"type": "module",
"version": "0.4.2",
"description": "generate clean commit messages in a snap! ✨",
"license": "MIT",
"author": {
"name": "Sithija Nelusha Silva",
"email": "[email protected]",
"url": "https://snelusha.dev"
},
"homepage": "https://github.com/snelusha/noto",
"repository": {
"type": "git",
"url": "git+https://github.com/snelusha/noto.git"
},
"bugs": {
"url": "https://github.com/snelusha/noto/issues"
},
"main": "dist/cli.js",
"module": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"noto": "bin/noto.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"publish": "npm publish --public"
},
"devDependencies": {
"@types/bun": "latest",
"@types/which": "^3.0.4",
"@types/yargs": "^17.0.33",
"esbuild-plugin-alias": "^0.2.1",
"tsup": "^8.3.6"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"dependencies": {
"@ai-sdk/google": "^1.1.10",
"@posva/prompts": "^2.4.4",
"ai": "^4.1.26",
"clipboardy": "^4.0.0",
"dedent": "^1.5.3",
"ora": "^8.2.0",
"picocolors": "^1.1.1",
"simple-git": "^3.27.0",
"which": "^5.0.0",
"yargs": "^17.7.2",
"zod": "^3.24.1"
}
}