-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 KB
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
{
"name": "liquid-java-baseline",
"displayName": "LiquidJava",
"description": "Extending Java with Liquid Types",
"version": "0.0.1",
"publisher": "AlcidesFonseca",
"repository": {
"type": "git",
"url": "https://github.com/liquid-java/vscode-liquidjava"
},
"homepage": "https://liquid-java.github.io",
"engines": {
"vscode": "^1.82.0"
},
"languages": [
{
"id": "java"
}
],
"categories": [
"Programming Languages",
"Debuggers",
"Testing"
],
"icon": "media/lj-icon.png",
"license": "MIT",
"keywords": [
"java",
"liquidjava",
"liquid java",
"liquid-java",
"liquid types",
"refinement types",
"static analysis",
"type checking",
"software verification"
],
"activationEvents": [
"onLanguage:java"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"build:server": "cd ../server && mvn clean package && mkdir -p ../client/server && cp target/language-server-liquidjava.jar ../client/server/",
"lint": "eslint src --ext ts",
"test": "npm run test:baseline"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/node": "^24.7.2",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"ts-loader": "^9.5.4",
"typescript": "~5.3.0",
"vsce": "^2.15.0",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4"
}
}