-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2 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
{
"name": "raven",
"displayName": "Raven Verifier",
"description": "VSCode integration of the Raven language and verifier.",
"icon": "images/logo.png",
"version": "1.0.0",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Programming Languages"
],
"publisher": "nyu-acsys",
"license": "See LICENSE file",
"repository": {
"type": "git",
"url": "https://github.com/nyu-acsys/raven-lang.git"
},
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Raven configuration",
"properties": {
"ravenServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"ravenServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"languages": [{
"id": "raven",
"aliases": ["Raven", "raven"],
"extensions": [".rav"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "raven",
"scopeName": "source.raven",
"path": "./syntaxes/raven.tmLanguage.json"
}]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20",
"@types/tmp": "^0.2.6",
"eslint": "^9.13.0",
"mocha": "^10.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.11.0",
"vscode": "^1.1.37"
},
"dependencies": {
"tmp": "^0.2.3",
"ts-pattern": "^5.5.0",
"vscode-uri": "^3.0.8"
}
}