-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2 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
{
"name": "tact-vscode",
"displayName": "Tact Language Support",
"description": "This extension enables support for tact in VS Code.",
"publisher": "ton-community",
"icon": "icons/logo.png",
"version": "0.1.4",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"repository": {
"type": "git",
"url": "https://github.com/ton-community/vscode-tact"
},
"author": {
"name": "Steve Korshakov (ex3ndr)",
"email": "steve@korshakov.com",
"url": "https://github.com/ex3ndr"
},
"scripts": {
"release": "release-it"
},
"contributes": {
"languages": [
{
"id": "tact",
"aliases": [
"Tact",
"tact"
],
"extensions": [
".tact"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "icons/icon-light.svg",
"dark": "icons/icon-dark.svg"
}
}
],
"grammars": [
{
"language": "tact",
"scopeName": "source.tact",
"path": "./syntaxes/.tmLanguage.json"
}
],
"snippets": [
{
"language": "tact",
"path": "./snippets/snippets.json"
}
]
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"release-it": "^15.6.0",
"vscode": "^1.1.37"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}