-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (66 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
57
58
59
60
61
62
63
64
65
66
{
"name": "gitmoji-c",
"description": "gitmoji-c is a gitmoji-cli clone tool that does not use gpg.",
"version": "1.0.0",
"author": "nitaking",
"bin": {
"gitmoji": "./bin/run"
},
"bugs": "https://github.com/nitaking/gitmoji-c/issues",
"dependencies": {
"@oclif/core": "^4.11.2",
"@oclif/plugin-help": "^6.2.48",
"axios": "^1.7.9",
"chalk": "^4.1.2",
"execa": "^9.6.1",
"inquirer": "9",
"inquirer-autocomplete-prompt": "3"
},
"devDependencies": {
"@oclif/test": "^4.1.18",
"@types/inquirer": "9",
"@types/inquirer-autocomplete-prompt": "^3.0.3",
"@types/node": "^20.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"oclif": "^4.23.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^3.2.1"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=20.0.0"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/nitaking/gitmoji-c",
"keywords": [
"oclif",
"gitmoji"
],
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "gitmoji",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "nitaking/gitmoji-c",
"scripts": {
"build": "tsc -b",
"lint": "eslint src/",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest",
"test": "vitest run",
"test:watch": "vitest"
},
"types": "lib/index.d.ts"
}