-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.16 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
{
"name": "git-messenger",
"version": "1.1.2",
"description": "",
"main": "dist/cli.js",
"files": [
"dist"
],
"bin": {
"git-messenger": "./dist/cli.js"
},
"scripts": {
"build": "tsc && cp README.md dist/",
"start": "node dist/cli.js",
"test": "tsx test/e2e.test.ts",
"prepare": "husky"
},
"keywords": [],
"author": "HEXXT <hexxt-git@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/hexxt-git/git-messenger.git"
},
"bugs": {
"url": "https://github.com/hexxt-git/git-messenger/issues"
},
"homepage": "https://github.com/hexxt-git/git-messenger#readme",
"license": "ISC",
"type": "module",
"dependencies": {
"execa": "^9.6.1",
"ink": "^7.0.5",
"ink-text-input": "^6.0.0",
"meow": "^14.1.0",
"react": "^19.2.7"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,ts,tsx,json,md,css}": [
"prettier --write"
]
}
}