-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 KB
/
package.json
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
{
"name": "linear-connect",
"displayName": "Linear Connect",
"description": "Official Linear API authentication provider for VS Code. Use this in your extension to easily connect to the Linear API.",
"publisher": "linear",
"author": "Linear Orbit, Inc",
"license": "MIT",
"version": "1.0.3",
"icon": "assets/128x128.png",
"repository": {
"type": "git",
"url": "https://github.com/linear/linear-vscode-connect-extension"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onAuthenticationRequest:linear",
"onCommand:linear-connect.logout"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"main": "./dist/main.js",
"contributes": {
"commands": [
{
"command": "linear-connect.logout",
"title": "Linear: Logout all Linear API sessions",
"when": "linear-connect.hasLinearSessions"
}
],
"authentication": [
{
"label": "Linear",
"id": "linear"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "14.x",
"@types/node-fetch": "^2.6.1",
"@types/uuid": "^8.3.4",
"@types/vscode": "^1.65.0",
"esbuild": "^0.14.29",
"typescript": "^4.5.5"
},
"dependencies": {
"@linear/sdk": "^1.22.0",
"node-fetch": "2.6.7",
"uuid": "^8.3.2"
}
}