-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1 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
{
"name": "linear-lit-cli",
"version": "0.1.1",
"description": "CLI tool for Linear and Git integration - manage Linear tickets without leaving your git workflow",
"main": "dist/index.js",
"bin": {
"lit": "./dist/index.js"
},
"keywords": [
"linear",
"git",
"cli",
"workflow",
"issue-tracking",
"productivity"
],
"repository": {
"type": "git",
"url": "https://github.com/tekaratzas/lit-cli.git"
},
"author": "Thomas Karatzas",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"install-global": "npm run build && npm link"
},
"dependencies": {
"@linear/sdk": "^61.0.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^12.10.0",
"ora": "^8.0.1",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/prompt-sync": "^4.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}