-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "coc-twoslash-queries",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "coc.nvim extension which adds support for twoslash queries into typescript projects",
"author": "auvred <[email protected]> (https://github.com/auvred/)",
"license": "MIT",
"homepage": "https://github.com/auvred/coc-twoslash-queries#readme",
"repository": {
"type": "git",
"url": "https://github.com/auvred/coc-twoslash-queries"
},
"keywords": [
"coc.nvim",
"twoslash",
"typescript",
"vim",
"neovim"
],
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"coc": "^0.0.82"
},
"contributes": {
"commands": [
{
"command": "twoslash.insertTwoslashQuery",
"title": "TwoSlash Query: Insert Below"
}
]
},
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "tsup-node",
"release": "pnpx bumpp"
},
"devDependencies": {
"@auvred/eslint-config": "^0.6.0",
"coc.nvim": "0.0.83-next.9",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
}
}