This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.06 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "coc-rome",
"version": "1.2.0",
"description": "Rome extension for coc.nvim",
"author": "Heyward Fann <fannheyward@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"fmt": "rome format --write ./src",
"check": "rome check ./src",
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"devDependencies": {
"@types/node": "14",
"coc.nvim": "^0.0.83-next.9",
"esbuild": "^0.18.11",
"rome": "^12.0.0",
"typescript": "^5.0.3"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"jsonValidation": [
{
"fileMatch": "rome.json",
"url": "https://raw.githubusercontent.com/rome/tools/main/editors/vscode/configuration_schema.json"
}
],
"configuration": {
"type": "object",
"title": "coc-rome configuration",
"properties": {
"rome.enable": {
"type": "boolean",
"default": true,
"description": "Enable coc-rome extension"
},
"rome.bin": {
"type": [
"string",
"null"
],
"default": null,
"description": "Custom rome binary path"
},
"rome.requireConfiguration": {
"type": "boolean",
"default": false,
"markdownDescription": "Require a Rome configuration file to enable syntax errors, formatting and linting. Requires Rome 12 or newer."
},
"rome.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"description": "Traces the communication between VS Code and the language server."
}
}
},
"commands": []
},
"dependencies": {}
}