-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "@locusai/locus-linear",
"version": "0.26.6",
"description": "Linear integration for Locus — sync issues, AI-powered workflows, and bidirectional project management",
"type": "module",
"bin": {
"locus-linear": "./bin/locus-linear.js"
},
"files": [
"bin",
"package.json",
"README.md"
],
"locus": {
"displayName": "Linear",
"description": "Linear integration with OAuth, issue sync, and AI-powered workflows",
"commands": [
"linear"
],
"version": "0.1.0"
},
"scripts": {
"build": "bun build src/cli.ts --outfile bin/locus-linear.js --target node",
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"clean": "rm -rf dist bin node_modules"
},
"dependencies": {
"@locusai/sdk": "^0.26.6",
"@linear/sdk": "^29.0.0",
"open": "^10.0.0"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"keywords": [
"locusai-package",
"locus",
"linear"
],
"engines": {
"node": ">=18"
},
"license": "MIT"
}