-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "linear-ls",
"version": "1.0.5",
"description": "Linear Language Server",
"bin": "index.js",
"main": "index.js",
"keywords": [
"lsp",
"linear",
"language",
"productivity"
],
"repository": "https://github.com/wilhelmeek/linear-ls",
"author": "wilhelm <helm@hey.com>",
"license": "MIT",
"files": [
"dist/*.js",
"index.js"
],
"dependencies": {
"@urql/core": "^3.1.1",
"graphql": "^16.6.0",
"node-fetch": "^2.6.7",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/typescript": "^3.0.0",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-non-null-assertion": "error"
}
}
}