-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.05 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.05 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
{
"name": "tyranoscript",
"displayName": "TyranoScript",
"description": "TyranoScript (.ks) 言語サポート(補完・ホバー・定義ジャンプ・診断)",
"version": "0.1.2",
"publisher": "void2610",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/void2610/tyranoscript-vscode.git"
},
"bugs": {
"url": "https://github.com/void2610/tyranoscript-vscode/issues"
},
"homepage": "https://github.com/void2610/tyranoscript-vscode",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"tyranoscript",
"ks",
"tyrano",
"visual novel",
"language server"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "tyranoscript",
"aliases": [
"TyranoScript",
"tyranoscript"
],
"extensions": [
".ks"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tyranoscript",
"scopeName": "source.tyranoscript",
"path": "./syntaxes/tyranoscript.tmLanguage.json",
"embeddedLanguages": {
"source.js": "javascript"
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node esbuild.mjs",
"build:test": "node esbuild.mjs --test",
"watch": "node esbuild.mjs --watch",
"test": "npm run build:test && node dist/test/runTests.js",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"@void2610/tyranoscript-lsp": "^0.6.4",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"typescript": "^5.0.0",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2"
}
}