This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.41 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
103
104
105
106
107
108
{
"name": "cleanlang",
"displayName": "CleanLang",
"description": "",
"version": "0.0.2",
"publisher": "lucas-franceschino",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:clean"
],
"repository": {
"type": "git",
"url": "[email protected]:W95Psp/CleanForVSCode.git"
},
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "CleanLang configuration",
"properties": {
"cleanlang.useBashOnWindowsIfPossible": {
"type": "boolean",
"default": false,
"description": "Use built in 'Bash On Windows' to run CPM and clean programs"
},
"cleanlang.useExportedTypes": {
"type": "boolean",
"default": false,
"description": "Analyse CPM output to extract type informations, and use these in tooltips (Warning: not tested!)"
},
"cleanlang.preferExportedTypes": {
"type": "boolean",
"default": false,
"description": "Give priority to CPM output (if a type was infered for some identifier, Cloogle won't be requested)"
}
}
},
"commands": [
{
"command": "extension.cpmMake",
"title": "CPM Make"
},
{
"command": "extension.cpmMakeExec",
"title": "CPM Make & execute"
},
{
"command": "extension.clean.cloogle",
"title": "Search Cloogle"
}
],
"keybindings": [
{
"command": "extension.clean.cloogle",
"key": "shift+alt+c",
"mac": "shift+alt+c",
"win": "shift+alt+c",
"linux": "shift+alt+c"
}
],
"languages": [
{
"id": "clean",
"aliases": [
"Clean",
"clean"
],
"extensions": [
"icl",
"dcl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "clean",
"scopeName": "source.clean",
"path": "./syntaxes/clean.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"mocha": "^3.5.0",
"typescript": "^3.5.1",
"vscode": "^1.1.5"
},
"dependencies": {
"@types/request-promise-native": "^1.0.7",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"typescript-memoize": "^1.0.0-alpha.3"
}
}