-
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) · 1004 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1004 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": "linear-cli",
"version": "0.1.0",
"private": true,
"description": "Schema-driven CLI wrapper around the Linear GraphQL API.",
"type": "module",
"packageManager": "pnpm@10.28.2",
"bin": {
"linear": "./dist/bin/linear.js"
},
"engines": {
"node": ">=22 <25"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc -p tsconfig.json --noEmit",
"dev": "node --import tsx ./src/bin/linear.ts",
"fetch:schema": "node --import tsx ./scripts/fetch-schema.ts",
"generate": "node --import tsx ./scripts/generate-registry.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"commander": "^14.0.3",
"env-paths": "^4.0.0",
"graphql": "^16.13.1",
"keytar": "^7.9.0",
"picocolors": "^1.1.1",
"undici": "^7.24.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}