-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
{
"name": "fuse-language",
"description": "Language Server Protocol support for the FUSE programming language",
"author": "FurryR",
"publisher": "FurryR",
"license": "MPL-2.0",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/scratch-fuse/lsp"
},
"categories": [],
"engines": {
"vscode": "^1.100.0"
},
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "fuse",
"aliases": [
"FUSE Language",
"fuse"
],
"extensions": [
".fuse"
],
"configuration": "./client/language-configuration.json"
}
],
"grammars": [
{
"language": "fuse",
"scopeName": "source.fuse",
"path": "./syntaxes/fuse.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "FUSE Configuration",
"properties": {
"fuse.maxLineLength": {
"type": "number",
"default": 2500,
"description": "Maximum line length (in characters) to parse. Lines longer than this will trigger a warning. Set to 0 to disable this limit.",
"scope": "resource"
}
}
},
"configurationDefaults": {
"editor.maxTokenizationLineLength": 2500
}
},
"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": "^22",
"eslint": "^9.13.0",
"mocha": "^10.3.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
}
}