-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.76 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
{
"name": "ruby-typeprof",
"displayName": "Ruby TypeProf",
"version": "0.20.2",
"publisher": "mame",
"author": {
"name": "Yusuke Endoh"
},
"repository": {
"type": "git",
"url": "https://github.com/ruby/typeprof/tree/master/vscode"
},
"license": "MIT",
"categories": [
"Programming Languages"
],
"keywords": [
"Ruby",
"language server"
],
"engines": {
"vscode": "^1.74.0"
},
"extensionKind": [
"workspace"
],
"activationEvents": [
"onLanguage:ruby"
],
"contributes": {
"commands": [
{
"command": "typeprof.restart",
"title": "Restart",
"category": "TypeProf"
}
],
"configuration": [
{
"title": "Ruby TypeProf",
"properties": {
"typeprof.server.path": {
"type": [
"null",
"string"
],
"default": null,
"description": "Path to typeprof executable. (e.g. /usr/local/bin/bundle)"
},
"typeprof.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the typeprof server."
}
}
}
]
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"pretest": "tsc -p ./",
"test": "node ./out/src/test/runTest.js",
"lint:eslint": "eslint src --ext ts",
"lint:prettier": "prettier --check .",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- --write",
"format": "npm run format:eslint && npm run format:prettier",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
}
}