-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.56 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ungrammar-language-features",
"displayName": "%displayName%",
"description": "%description%",
"private": true,
"version": "0.0.5",
"publisher": "binhtran432k",
"author": "Binh Tran <binhtran432k@gmail.com>",
"repository": {
"url": "https://github.com/binhtran432k/ungrammar-language-features.git",
"type": "git"
},
"license": "MIT",
"keywords": ["ungrammar", "Component Model", "LSP", "Language Server"],
"categories": ["Formatters", "Programming Languages"],
"engines": {
"vscode": "^1.91.0"
},
"icon": "icons/ungram.png",
"activationEvents": [],
"main": "./dist/node/extension",
"browser": "./dist/browser/extension",
"workspaces": ["packages/*"],
"scripts": {
"lint": "biome ci",
"nx:ci": "nx affected -t test build",
"fix": "biome check --fix --unsafe",
"graph": "nx graph",
"dev": "bunx --bun nx dev ungrammar-www",
"preview": "bunx --bun nx preview ungrammar-www",
"preview:vscode": "bunx --bun nx preview ungrammar-vscode",
"build": "bunx --bun lerna run build",
"build:vscode": "bunx --bun lerna run build --scope ungrammar-vscode",
"build:www": "bunx --bun lerna run build --scope ungrammar-www",
"test": "bunx --bun lerna run test",
"version": "bunx --bun lerna version --no-push",
"publish:npm": "bunx --bun lerna publish from-package --no-private --yes",
"publish:vscode": "vsce publish --no-dependencies --skip-duplicate",
"vscode:prepublish": "bun build:vscode"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"@vscode/vsce": "^3.1.0",
"lerna": "^8.1.8"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"contributes": {
"languages": [
{
"id": "ungrammar",
"extensions": [".ungram"],
"aliases": ["Ungrammar", "ungram"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ungrammar",
"scopeName": "source.ungrammar",
"path": "./syntaxes/ungrammar.tmLanguage.json"
}
],
"configuration": {
"id": "ungrammar",
"title": "Ungrammar",
"type": "object",
"properties": {
"ungrammar.validate.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%ungrammar.validate.enable.desc%"
},
"ungrammar.format.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%ungrammar.format.enable.desc%"
},
"ungrammar.trace.server": {
"type": "string",
"scope": "window",
"enum": ["off", "messages", "verbose"],
"default": "off",
"description": "%ungrammar.tracing.desc%"
}
}
}
}
}