-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.62 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "linearis",
"version": "2026.4.5",
"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",
"USAGE.md"
],
"scripts": {
"build": "tsc",
"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",
"generate": "graphql-codegen --config codegen.config.ts",
"generate:usage": "tsx src/main.ts usage --all > USAGE.md",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"check": "biome check --write .",
"check:ci": "biome check .",
"release": "npm test && npm run build && npx clean-publish --access public",
"prestart": "npm run generate",
"predev": "npm run generate",
"prebuild": "npm run generate && npm run generate:usage",
"prepare": "npm run generate && lefthook install",
"prepack": "npm run build",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"linear",
"agents",
"llm",
"ticketing",
"cli"
],
"author": "Carlo Zottmann <[email protected]>",
"contributors": [
"Fabian Jocks <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/linearis-oss/linearis.git"
},
"bugs": {
"url": "https://github.com/linearis-oss/linearis/issues"
},
"homepage": "https://github.com/linearis-oss/linearis#readme",
"dependencies": {
"@linear/sdk": "81.0.0",
"commander": "14.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@graphql-codegen/cli": "^6.1.1",
"@graphql-codegen/client-preset": "^5.2.2",
"@graphql-codegen/introspection": "5.0.1",
"@graphql-codegen/schema-ast": "^5.0.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"clean-publish": "^6.0.5",
"lefthook": "^2.1.0",
"tsx": "^4.20.5",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"graphql": {
"schema": "https://api.linear.app/graphql",
"documents": "**/*.graphql"
},
"clean-publish": {
"fields": [
"scripts",
"graphql"
]
}
}