-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 828 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 828 Bytes
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
{
"name": "@rusintez/linear",
"version": "1.1.4",
"description": "Simple CLI wrapper for Linear GraphQL API - supports multiple workspaces",
"type": "module",
"bin": {
"linear": "./bin/linear.js"
},
"files": [
"src",
"bin"
],
"scripts": {
"test": "tsx src/index.ts"
},
"keywords": [
"linear",
"cli",
"graphql",
"api"
],
"author": "Vladimir Popov <rusintez@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/rusintez/linear"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.3",
"tsx": "^4.21.0"
},
"devDependencies": {
"@types/node": "^25.2.3",
"typescript": "^5.9.3"
}
}