-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.66 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "linearis",
"version": "2026.8.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": {
"linearis": "dist/main.js",
"linear": "dist/main.js"
},
"files": [
"dist/",
"schemas/",
"README.md",
"LICENSE.md",
"USAGE.md"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist/",
"start": "tsx src/main.ts",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:commands": "tsx tests/command-coverage.ts",
"typecheck:test": "tsc --noEmit -p tsconfig.test.json",
"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 .",
"knip": "knip --no-config-hints",
"knip:ci": "knip --no-config-hints --reporter markdown",
"count:root-fields": "node scripts/count-root-fields.mjs",
"verify:packed-binaries": "node scripts/verify-packed-binaries.mjs",
"release": "npm test && npm run build && npm run verify:packed-binaries && rm -rf .clean-pkg && npx clean-publish --without-publish --temp-dir .clean-pkg && npm publish ./.clean-pkg --access public && rm -rf .clean-pkg",
"prestart": "npm run generate",
"predev": "npm run generate",
"prebuild": "npm run generate && npm run generate:usage",
"prepare": "node scripts/prepare.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm test",
"release:dry-run": "semantic-release --dry-run --no-ci",
"release:run": "semantic-release"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"linear",
"agents",
"llm",
"ticketing",
"cli"
],
"author": "Carlo Zottmann <carlo@zottmann.dev>",
"contributors": [
"Fabian Jocks <dev@iamfj.xyz>"
],
"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": {
"commander": "15.0.0",
"graphql": "17.0.2",
"node-emoji": "2.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@graphql-codegen/cli": "^7.0.0",
"@graphql-codegen/client-preset": "^6.0.0",
"@graphql-typed-document-node/core": "3.2.0",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/ui": "^4.0.0",
"clean-publish": "^7.0.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"knip": "^6.24.0",
"lefthook": "^2.1.0",
"semantic-release": "^25.0.1",
"tsx": "^4.20.5",
"typescript": "^7.0.0",
"vitest": "^4.0.0"
},
"graphql": {
"schema": "https://api.linear.app/graphql",
"documents": "**/*.graphql"
},
"clean-publish": {
"fields": [
"scripts",
"graphql"
]
}
}