forked from Tr3ffel/linear-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.82 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
{
"name": "linear-md",
"displayName": "Linear Markdown",
"description": "A simple plugin to sync linear issues and docs to markdown files.",
"version": "0.0.4",
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Other"
],
"keywords": [
"linear",
"markdown",
"sync",
"issue tracking",
"documentation"
],
"icon": "media/linear.png",
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Tr3ffel/linear-md.git"
},
"publisher": "Tr3ffel",
"contributes": {
"configuration": {
"properties": {
"linear-md.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Enable or disable CodeLens for Linear Markdown sync commands"
}
}
},
"commands": [
{
"command": "linear-md.input-linear-api-key",
"title": "Input Linear Key"
},
{
"command": "linear-md.delete-linear-api-key",
"title": "Delete Linear API Key"
},
{
"command": "linear-md.sync-up",
"title": "Sync Up to Linear"
},
{
"command": "linear-md.sync-down",
"title": "Sync Down from Linear"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "20.2.5",
"@types/js-yaml": "^4.0.9",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@linear/sdk": "^37.0.0",
"js-yaml": "^4.1.0"
}
}