-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.43 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
{
"name": "evplus",
"displayName": "eV+ / V+ Robot Language",
"description": "Syntax highlighting, hover reference, completion and snippets for Omron Adept eV+ / V+ robot programs (.pg, .v2).",
"version": "0.2.0",
"publisher": "cimos",
"license": "MIT",
"icon": "images/icon_256.png",
"repository": {
"type": "git",
"url": "https://github.com/Cimos/vscode-evplus.git"
},
"bugs": {
"url": "https://github.com/Cimos/vscode-evplus/issues"
},
"homepage": "https://github.com/Cimos/vscode-evplus#readme",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:evplus"
],
"keywords": [
"omron",
"adept",
"ev+",
"v+",
"robot",
"pg"
],
"scripts": {
"test:snap": "vscode-tmgrammar-snap -s source.evplus -g syntaxes/evplus.tmLanguage.json \"tests/fixtures/*.pg\"",
"test:cases": "vscode-tmgrammar-test -g syntaxes/evplus.tmLanguage.json \"tests/cases/*.pg\"",
"test": "npm run test:snap && npm run test:cases && npm run test:unit",
"test:update": "vscode-tmgrammar-snap -s source.evplus -g syntaxes/evplus.tmLanguage.json -u \"tests/fixtures/*.pg\"",
"test:unit": "npm run compile && node --test \"tests/unit/**/*.test.mjs\"",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"compile": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"package": "npm run typecheck && node esbuild.mjs --production",
"vscode:prepublish": "npm run package",
"generate": "python3 tools/generate_data.py"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "~1.80.0",
"esbuild": "^0.21.0",
"playwright-core": "^1.62.0",
"typescript": "^5.4.0",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2",
"vscode-tmgrammar-test": "^0.1.3"
},
"contributes": {
"languages": [
{
"id": "evplus",
"aliases": [
"eV+",
"V+",
"evplus"
],
"extensions": [
".pg",
".v2"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "evplus",
"scopeName": "source.evplus",
"path": "./syntaxes/evplus.tmLanguage.json"
}
],
"snippets": [
{
"language": "evplus",
"path": "./snippets/evplus.json"
}
]
}
}