-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.18 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.18 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
88
89
90
91
92
93
94
95
96
{
"name": "levitate-extension",
"displayName": "Levitate-Extension",
"description": "Syntax highlighting and language support for the Levitate DSL",
"icon": "assets/icon.png",
"version": "1.0.1",
"publisher": "ChouChiu",
"repository": {
"type": "git",
"url": "https://github.com/ChouChiu/Levitate-Extension"
},
"license": "MIT",
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./dist/client/extension.js",
"contributes": {
"languages": [
{
"id": "levitate",
"aliases": [
"Levitate",
"lvt"
],
"extensions": [
".lvt"
],
"icon": {
"light": "./assets/icon.png",
"dark": "./assets/icon.png"
},
"configuration": "./packages/grammar/language-configuration.json"
}
],
"grammars": [
{
"language": "levitate",
"scopeName": "source.lvt",
"path": "./packages/grammar/syntaxes/lvt.tmLanguage.json"
}
],
"configuration": {
"title": "Levitate",
"properties": {
"levitate.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Trace the communication between VS Code and the language server."
},
"levitate.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the Levitate language server."
}
}
}
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun esbuild.config.mts",
"watch": "bun esbuild.config.mts --watch",
"package": "bun run build && bun x @vscode/vsce package --no-dependencies --allow-missing-repository",
"lint": "biome lint .",
"format": "biome format --write .",
"prepare": "bun x husky"
},
"lint-staged": {
"*.{ts,js,mjs,mts,json,html,css}": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.9.0",
"@types/vscode": "^1.120.0",
"@vscode/vsce": "^3.9.1",
"esbuild": "^0.28.0",
"lint-staged": "^17.0.5",
"typescript": "~6.0.3"
},
"packageManager": "bun@1.2.0",
"overrides": {
"glob": "^13.0.0"
}
}