-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.28 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "fsyacc-language-service",
"displayName": "FsYacc Language Service",
"description": "Simple language service for FsYacc",
"publisher": "ijklam",
"version": "0.1.0",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/ijklam/fsyacc-language-service.git"
},
"license": "MIT",
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime"
],
"contributes": {
"commands": [
{
"command": "fsyacc-language-service.stopLsp",
"title": "Stop FsYacc Language Service"
},
{
"command": "fsyacc-language-service.startLsp",
"title": "Start FsYacc Language Service"
},
{
"command": "fsyacc-language-service.startLspWaitingDebugger",
"title": "Start FsYacc Language Service and wait for debugger to attach"
}
],
"languages": [
{
"id": "fsyacc",
"aliases": [
"FsYacc"
],
"extensions": [
".fsy"
],
"configuration": "./fsyacc.configuration.json"
}
],
"grammars": [
{
"language": "fsyacc",
"scopeName": "source.fsyacc",
"path": "./syntaxes/FsYacc.tmLanguage"
}
]
},
"scripts": {
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"typescript": "^5.6.2"
},
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7",
"vscode-languageclient": "^9.0.1"
}
}