-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 2.97 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
{
"publisher": "Crescendo",
"name": "seml",
"displayName": "Seml",
"description": "Syntax highlighting and parsing for Survival Endless Markup Language.",
"version": "1.16.0",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "seml",
"aliases": [
"Seml",
"seml"
],
"extensions": [
".seml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "seml",
"scopeName": "source.seml",
"path": "./syntaxes/seml.tmLanguage.json"
}
],
"commands": [
{
"command": "seml.compileToJson",
"title": "Seml: 导出为 JSON (compile to JSON)"
},
{
"command": "seml.testSmash",
"title": "Seml: 测试砸率 (test smash)"
},
{
"command": "seml.testExplode",
"title": "Seml: 测试炮伤 (test explode)"
},
{
"command": "seml.testRefresh",
"title": "Seml: 测试刷新 (test refresh)"
},
{
"command": "seml.testPogo",
"title": "Seml: 测试跳跳 (test pogo)"
},
{
"command": "seml.useSmashTemplate",
"title": "Seml: 使用砸率模板 (use smash template)"
},
{
"command": "seml.useExplodeTemplate",
"title": "Seml: 使用炮伤模板 (use explode template)"
},
{
"command": "seml.useRefreshTemplate",
"title": "Seml: 使用刷新模板 (use refresh template)"
},
{
"command": "seml.usePogoTemplate",
"title": "Seml: 使用跳跳模板 (use pogo template)"
},
{
"command": "seml.testPos",
"title": "Seml: 测试坐标分布 (test pos)"
},
{
"command": "seml.usePosTemplate",
"title": "Seml: 使用坐标分布模板 (use pos template)"
},
{
"command": "seml.testBlocks",
"title": "Seml: 测试代码块 (test blocks)"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/Rottenham/seml"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"test": "mocha out/test/**/*.test.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.4",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}