-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.37 KB
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
{
"name": "cashscript-vscode",
"publisher": "CashScript",
"displayName": "CashScript VSCode",
"description": "Cashscript language support for Visual Studio Code",
"version": "0.8.0",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/CashScript/vscode-cashscript"
},
"bugs": {
"url": "https://github.com/CashScript/vscode-cashscript/issues"
},
"contributors": [
"CashScript",
"Nathaniel Cherian"
],
"keywords": [
"cashscript",
"bch",
"blockchain",
"compiler",
"contract"
],
"categories": [
"Programming Languages",
"Snippets",
"Linters"
],
"engines": {
"vscode": "^1.83.0"
},
"activationEvents": [
"onLanguage:cashscript"
],
"main": "./dist/extension.js",
"files": [
"dist",
"media/icon.png",
"snippets",
"syntaxes",
"cashscript.configuration.json",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"vscode:prepublish": "rm -rf dist && rolldown -c --environment MINIFY:true",
"lint": "prettier --write .",
"build": "rm -rf dist && rolldown -c",
"typecheck": "tsc --noEmit",
"clean": "rm -rf out dist",
"watch": "rolldown -c -w",
"package": "vsce package --no-dependencies"
},
"contributes": {
"languages": [
{
"id": "cashscript",
"aliases": [
"cashscript",
"Cashscript"
],
"extensions": [
".cash"
],
"configuration": "./cashscript.configuration.json"
}
],
"grammars": [
{
"language": "cashscript",
"scopeName": "source.cash",
"path": "./syntaxes/cashscript.tmLanguage.json"
}
],
"snippets": [
{
"language": "cashscript",
"path": "./snippets/cashscript.snippets.json"
}
]
},
"dependencies": {
"cashc": "^0.14.0-next.3",
"cashc-012": "npm:cashc@^0.12.2",
"cashc-013": "npm:cashc@^0.13.2",
"semver": "^7.7.2",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.4"
},
"devDependencies": {
"@types/node": "^18.7.23",
"@types/semver": "^7",
"@types/vscode": "^1.83.0",
"@vscode/vsce": "^3.0.0",
"prettier": "^3.4.2",
"rolldown": "^1.2.2",
"typescript": "^5.7.3",
"vscode-test": "^1.6.1"
},
"packageManager": "yarn@4.6.0"
}