-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 2.89 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "fuzzy-ruby-server",
"displayName": "Fuzzy Ruby Server",
"description": "Performant Goto Definition and other LSP features",
"author": "Joel Korpela",
"repository": {
"type": "git",
"url": "https://github.com/pheen/fuzzy_ruby_vscode_client"
},
"publisher": "Blinknlights",
"license": "MIT",
"version": "1.0.0",
"icon": "images/icon.png",
"categories": [],
"keywords": [
"ruby",
"language",
"server",
"goto",
"definition"
],
"engines": {
"vscode": "^1.65.0"
},
"enabledApiProposals": [],
"activationEvents": [
"onLanguage:ruby"
],
"extensionKind": [
"workspace"
],
"main": "./client/out/extension.js",
"contributes": {
"languages": [
{
"id": "ruby",
"extensions": [
".rb"
]
}
],
"configuration": {
"type": "object",
"title": "Fuzzy Ruby Server",
"properties": {
"fuzzyRubyServer.allocationType": {
"scope": "window",
"type": "string",
"enum": [
"tempdir",
"ram"
],
"default": "ram",
"description": "Set if the search index should be purely in-mmemory (ram) or swapped to disk with mmap (tempdir)."
},
"fuzzyRubyServer.indexGems": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Set if gems are included in the search index."
},
"fuzzyRubyServer.includeDirs": {
"scope": "window",
"type": "array",
"default": [],
"description": "Additional directories to be indexed. \"interface_only\" controls if only classes and methods should be indexed, defaults to true. Formatted as: [{ path: \"/absolute/path\", interface_only: false }]"
},
"fuzzyRubyServer.reportDiagnostics": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Set if diagnostics should be shown."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./client/src/extension.ts --bundle --outfile=./client/out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cross-env": "^7.0.2",
"electron-rebuild": "^1.11.0",
"esbuild": "^0.15.18",
"eslint": "^7.6.0",
"glob": "^7.1.7",
"mocha": "^8.0.1",
"ts-loader": "^8.0.12",
"typescript": "^4.4.3",
"vscode-test": "^1.4.0",
"vscode-uri": "^3.0.2"
}
}