-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 887 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 887 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
{
"name": "linear-select-issue-cli",
"version": "1.9.95",
"author": "zsiegel",
"prepublishOnly": "npm run build",
"scripts": {
"build": "tsup",
"dev": "tsx src/linear_cli.ts",
"demo": "tsx src/demo.ts",
"built": "node dist/linear_cli.js",
"patch": "npm version patch",
"cleanCache": "npm cache clean --force",
"pub": "npm publish --access public",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"bin": {
"linear-cli": "dist/linear_cli.js"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"@linear/sdk": "^27.0.0",
"express": "^5.1.0",
"fzf-ts": "^1.1.1",
"minimist": "^1.2.8",
"tsx": "^4.17.0",
"typescript": "^5.8.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/minimist": "^1.2.5",
"@types/node": "^22.4.1",
"tsup": "^8.4.0"
}
}