-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.69 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
68
69
70
{
"name": "coc-calc",
"version": "3.1.0",
"description": "calculate extension for coc.nvim",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"calculator",
"calc"
],
"scripts": {
"clean": "rimraf lib",
"build": "node build.js",
"dev": "node watch.js",
"prepare": "yarn run clean && yarn run build",
"test": "eslint src --ext .js,.ts"
},
"files": [
"lib"
],
"engines": {
"coc": "^0.0.71"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Calc",
"properties": {
"calc.debug": {
"type": "boolean",
"default": false
},
"calc.priority": {
"type": "integer",
"default": 1000,
"description": "Calc priority"
},
"calc.highlight": {
"type": "boolean",
"description": "Enable calc highlight",
"default": true
}
}
}
},
"license": "MIT",
"author": "Weirong Xu <weirongxu.raidou@gmail.com>",
"publisher": "weirongxu",
"homepage": "https://github.com/weirongxu/coc-calc",
"repository": "https://github.com/weirongxu/coc-calc.git",
"devDependencies": {
"@raidou/eslint-config-base": "^1.6.0",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"coc-helper": "^0.15.2",
"coc.nvim": "^0.0.83-next.9",
"editor-calc": "^2.1.2",
"esbuild": "^0.15.16",
"eslint": "^8.28.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3",
"vscode-languageserver-protocol": "^3.17.2",
"vscode-languageserver-textdocument": "^1.0.7"
}
}