-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.32 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
{
"name": "darabonba",
"displayName": "Darabonba DSL",
"publisher": "darabonba",
"icon": "images/DarabonbaLogo.png",
"description": "Darabonba support for VS Code extension",
"version": "0.2.1",
"engines": {
"vscode": "^1.41.1"
},
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:dara"
],
"categories": [
"Programming Languages",
"Snippets",
"Formatters"
],
"contributes": {
"snippets": [
{
"language": "dara",
"path": "./snippets.json"
}
],
"languages": [
{
"id": "dara",
"aliases": [
"Darabonba",
"Dara"
],
"extensions": [
".dara",
".tea"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dara",
"scopeName": "source.dara",
"path": "./syntaxes/dara.tmLanguage.json"
}
],
"commands": [
{
"title": "Check the *.dara files",
"category": "Darabonba",
"command": "dara.check"
}
],
"configuration": {
"title": "Darabonba DSL",
"properties": {}
},
"jsonValidation": [
{
"fileMatch": "Darafile",
"url": "./schemas/darafile.schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build && webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -b",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"build": "js-yaml syntaxes/dara.tmLanguage.yaml > syntaxes/dara.tmLanguage.json"
},
"devDependencies": {
"@types/node": "^12",
"@types/vscode": "^1.41.0",
"js-yaml": "^3.13.1",
"ts-loader": "^8.0.1",
"tslint": "^5.16.0",
"typescript": "^3.7.5",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
},
"repository": {
"type": "http",
"url": "https://github.com/aliyun/darabonba-vscode.git"
},
"keywords": [
"Darabonba",
"DSL"
],
"author": "Jackson Tian",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aliyun/darabonba-vscode/issues"
},
"homepage": "https://github.com/aliyun/darabonba-vscode#readme",
"dependencies": {
"@darabonba/cli": "^1",
"@darabonba/parser": "^1"
}
}