-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.24 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.24 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "nullscript-intelligence",
"displayName": "NullScript Intelligence",
"description": "Intelligent language support for NullScript: smart auto-completion with design patterns, contextual hover documentation, import assistance, and beautiful syntax highlighting",
"version": "0.2.0",
"publisher": "nullscript-lang",
"icon": "./images/icon.png",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Programming Languages",
"Language Packs",
"Snippets",
"Linters"
],
"keywords": [
"nullscript",
"javascript",
"programming-language",
"intelligence",
"autocomplete",
"intellisense",
"hover",
"documentation",
"error-detection",
"language-support",
"syntax-highlighting",
"transpiler",
"compiler",
"language-server"
],
"repository": {
"type": "git",
"url": "https://github.com/nullscript-lang/nullscript-intelligence.git",
"directory": "vscode-extension"
},
"homepage": "https://nullscript.js.org",
"bugs": {
"url": "https://github.com/nullscript-lang/nullscript-intelligence/issues"
},
"license": "MIT",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"qna": "marketplace",
"badges": [
{
"url": "https://img.shields.io/github/license/nullscript-lang/nullscript-intelligence",
"href": "https://github.com/nullscript-lang/nullscript-intelligence/blob/main/LICENSE",
"description": "License"
},
{
"url": "https://img.shields.io/github/stars/nullscript-lang/nullscript-intelligence",
"href": "https://github.com/nullscript-lang/nullscript-intelligence",
"description": "GitHub Stars"
}
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "nullscript",
"aliases": [
"NullScript",
"nullscript"
],
"extensions": [
".ns"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./images/file-icon.png",
"dark": "./images/file-icon.png"
}
}
],
"grammars": [
{
"language": "nullscript",
"scopeName": "source.nullscript",
"path": "./syntaxes/nullscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "nullscript",
"path": "./snippets/nullscript.json"
}
],
"configuration": {
"title": "NullScript Intelligence",
"properties": {
"nullscript.completion.enabled": {
"type": "boolean",
"default": true,
"description": "Enable intelligent auto-completion for NullScript keywords and methods"
},
"nullscript.hover.enabled": {
"type": "boolean",
"default": true,
"description": "Enable smart hover documentation with examples and tips"
}
}
},
"commands": []
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish",
"clean": "rm *.vsix"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.74.0",
"@vscode/vsce": "^3.6.0",
"typescript": "^5.9.2"
}
}