-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.31 KB
/
package.json
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
{
"name": "vscode-player",
"displayName": "Player VSCode",
"description": "Syntax highlighting and validation for the player dsl",
"publisher": "player-oss",
"icon": "media/icon-small.png",
"private": true,
"version": "0.0.3",
"license": "MIT",
"engines": {
"vscode": "^1.56.0"
},
"repository": {
"type": "git",
"url": "https://github.com/player-ui/vscode-player.git"
},
"files": [
"player-syntax.vsix",
"syntaxes",
"language-configuration.json"
],
"categories": [
"Programming Languages"
],
"keywords": [
"player",
"vscode"
],
"scripts": {
"release": "auto shipit",
"labelCheck": "auto pr-check",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"auto": "^10.37.6",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
},
"contributes": {
"languages": [
{
"id": "source.player.binding",
"extensions": [
".player.binding"
]
},
{
"id": "source.player.expression",
"extensions": [
".player.expression"
]
}
],
"grammars": [
{
"language": "source.player.binding",
"scopeName": "source.player.binding",
"path": "./syntaxes/player-binding.tmLanguage.json"
},
{
"language": "source.player.expression",
"scopeName": "source.player.expression",
"path": "./syntaxes/player-expression.tmLanguage.json"
},
{
"injectTo": [
"source.js",
"source.ts",
"source.js.jsx",
"source.tsx",
"source.vue"
],
"scopeName": "inline.player.expression",
"path": "./syntaxes/player-expression-inline.json",
"embeddedLanguages": {
"meta.embedded.block.expression": "source.player.expression"
}
},
{
"injectTo": [
"source.js",
"source.ts",
"source.js.jsx",
"source.tsx",
"source.vue"
],
"scopeName": "inline.player.binding",
"path": "./syntaxes/player-binding-inline.json",
"embeddedLanguages": {
"meta.embedded.block.binding": "source.player.binding"
}
}
]
},
"dependencies": {
"@auto-it/vscode": "^10.37.6"
}
}