This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "clarity",
"displayName": "Clarity Language Support",
"description": "Auto-complete and syntax highlighting for Blockstack's Clarity smart contracting language",
"publisher": "blockstack",
"version": "0.0.5",
"private": true,
"repository": "https://github.com/blockstack/clarity-vscode.git",
"homepage": "https://github.com/blockstack/clarity-vscode",
"bugs": "https://github.com/blockstack/clarity-vscode/issues",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"Blockstack",
"Stacks 2.0",
"Smart Contract",
"Blockchain",
"LISP"
],
"galleryBanner": {
"color": "#0f0f0f",
"theme": "light"
},
"icon": "images/blockstack-logo.png",
"qna": "https://clarity-lang.org/",
"contributes": {
"languages": [
{
"id": "clarity",
"aliases": [
"Clarity",
"clarity"
],
"extensions": [
".clar"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "clarity",
"scopeName": "source.clarity",
"path": "./syntaxes/clarity.json"
}
]
},
"scripts": {
"build": "js-yaml syntaxes/clarity.yaml > syntaxes/clarity.json",
"vscode:prepublish": "npm run build",
"vsce-package": "vsce package --out ./.package/clarity.vsix",
"vsce-publish": "vsce publish"
},
"devDependencies": {
"js-yaml": "^3.13.1",
"vsce": "^1.74.0"
}
}