-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "linearis",
"version": "2025.12.3",
"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": {
"linearis": "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": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:commands": "tsx tests/command-coverage.ts",
"prepublishOnly": "npm run build && npm run test && test -x dist/main.js"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"linear",
"agents",
"llm",
"ticketing",
"cli"
],
"author": "Carlo Zottmann <carlo@zottmann.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/czottmann/linearis.git"
},
"bugs": {
"url": "https://github.com/czottmann/linearis/issues"
},
"homepage": "https://github.com/czottmann/linearis#readme",
"dependencies": {
"@linear/sdk": "^58.1.0",
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"tsx": "^4.20.5",
"typescript": "^5.0.0",
"vitest": "^2.1.8"
}
}