forked from linearis-oss/linearis
-
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) · 970 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 970 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": "linearis",
"version": "1.1.0",
"description": "CLI tool for Linear.app with JSON output, smart ID resolution, and optimized GraphQL queries. Designed for LLM agents and humans who prefer structured data.",
"main": "dist/main.js",
"type": "module",
"bin": "dist/main.js",
"files": [
"dist/",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc && chmod +x dist/main.js",
"clean": "rm -rf dist/",
"start": "tsx src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"linear",
"agents",
"llm",
"ticketing",
"cli"
],
"author": "Carlo Zottmann <carlo@zottmann.dev>",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@linear/sdk": "^58.1.0",
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.20.5",
"typescript": "^5.0.0"
}
}