-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.68 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.68 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
{
"name": "script-lang",
"displayName": "Script Lang - AI-Native Programming",
"description": "Language support for the Script programming language - an AI-native language with production-grade generics, pattern matching, and memory safety",
"version": "0.1.2",
"publisher": "script-lang",
"author": {
"name": "Script Language Contributors"
},
"license": "MIT",
"homepage": "https://github.com/moikas-code/vscode-script-extension",
"repository": {
"type": "git",
"url": "https://github.com/moikas-code/vscode-script-extension.git"
},
"bugs": {
"url": "https://github.com/moikas-code/vscode-script-extension/issues"
},
"keywords": [
"script",
"scripting",
"programming-language",
"syntax-highlighting"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:script"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "script",
"aliases": [
"Script",
"script"
],
"extensions": [
".script"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/script-icon.png",
"dark": "./icons/script-icon.png"
}
}
],
"grammars": [
{
"language": "script",
"scopeName": "source.script",
"path": "./syntaxes/script.tmLanguage.json"
}
],
"iconThemes": [
{
"id": "script-icon-theme",
"label": "Script Icons",
"path": "./script-icon-theme.json"
}
],
"commands": [
{
"command": "script.helloWorld",
"title": "Script: Hello World"
}
],
"configuration": {
"title": "Script Language",
"properties": {
"script.enableAutoUpdate": {
"type": "boolean",
"default": true,
"description": "Enable automatic update notifications for Script extension"
},
"script.showUpdateNotifications": {
"type": "boolean",
"default": true,
"description": "Show notifications when the extension is updated"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish",
"test": "echo \"No tests yet\"",
"lint": "echo \"No linting yet\""
},
"devDependencies": {
"@vscode/vsce": "^2.24.0",
"@types/vscode": "^1.75.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}