-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.54 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
101
102
103
104
105
106
107
{
"name": "bow-tintin",
"displayName": "Bow Tintin",
"description": "Bow Tintin Language Support",
"version": "1.2.0",
"author": "Franck DAKIA",
"icon": "icon.jpg",
"publisher": "papac",
"bugs": "https://github.com/bowphp/vscode-extension/issues",
"engines": {
"vscode": "^1.69.0"
},
"main": "./out/src/extension.js",
"scripts": {
"build-srv": "cd ./server && npm install && tsc -p ./",
"compile": "tsc -watch -p ./",
"vscode:prepublish": "webpack --mode production && bash -c 'pushd \"./\"' && npm run build-srv",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"deploy": "vsce publish"
},
"repository": {
"type": "git",
"url": "https://github.com/bowphp/vscode-extension.git"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets"
],
"keywords": [
"bowphp",
"tintin",
"template",
"snippet",
"formatter"
],
"contributes": {
"snippets": [
{
"language": "tintin",
"path": "./snippets/snippets.code-snippets"
}
],
"languages": [
{
"id": "tintin",
"aliases": [
"Tintin",
"tintin"
],
"extensions": [
".tintin.php",
".tintin"
],
"configuration": "./tintin-configuration.json"
}
],
"grammars": [
{
"language": "tintin",
"scopeName": "text.html.php.tintin",
"path": "./syntaxes/tintin.tmLanguage.json",
"embeddedLanguages": {
"source.php": "php",
"source.css": "css",
"source.js": "javascript"
}
}
],
"configuration": {
"title": "Tintin Configuration",
"properties": {
"tintin.format.enable": {
"type": "boolean",
"default": false,
"description": "Enable format tintin file"
}
}
}
},
"activationEvents": [
"onLanguage:php",
"onLanguage:js",
"onLanguage:html"
],
"devDependencies": {
"@types/node": "^16.18.16",
"@types/vscode": "^1.46.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"vscode-css-languageservice": "^6.2.4",
"vscode-html-languageservice": "^5.0.4",
"vscode-languageclient": "^6.1.4",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-languageserver-types": "^3.17.3",
"vscode-nls": "^5.2.0"
},
"galleryBanner": {
"color": "#d5a6bd",
"theme": "dark"
}
}