-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
57
58
59
60
61
{
"name": "gitemo-cli",
"version": "2.4.4",
"bin": {
"gitemo": "lib/cli.js"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"description": "A cli tool to make your git commits fun!",
"repository": "https://github.com/SySagar/gitemo-cli.git",
"author": "Sagar <[email protected]>",
"type": "module",
"license": "MIT",
"scripts": {
"lint": "eslint ./src/**/*.{js,ts}",
"build": "babel src -d lib --extensions \".js,.ts\"",
"format": "prettier --write src/**/* && git add -A .",
"release": "changeset publish",
"prepare": "husky",
"update": "npm install -g gitemo-cli",
"re-link": "npm unlink gitemo && npm link"
},
"dependencies": {
"@changesets/cli": "^2.27.6",
"@google/generative-ai": "^0.14.0",
"async-listen": "^3.0.1",
"bcrypt": "^5.1.1",
"chalk": "^5.3.0",
"conf": "^13.0.1",
"dotenv": "^16.4.5",
"execa": "^9.3.0",
"fuse.js": "^7.0.0",
"inquirer": "^9.2.23",
"inquirer-autocomplete-prompt": "^3.0.1",
"meow": "^13.2.0",
"nanoid": "^5.0.7",
"ora": "^8.0.1",
"path-exists": "^5.0.0",
"rate-limiter-flexible": "^5.0.3",
"update-notifier": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-import-assertions": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.3.0",
"babel-plugin-module-extension-resolver": "^1.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-import-meta": "^2.2.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"eslint": "9.x",
"globals": "^15.3.0",
"husky": "^9.0.11",
"prettier": "^3.2.5"
}
}