-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "anchor-lang-vscode-extension",
"description": "A extension to write contracts in anchor-lang faster",
"author": "Munanadi",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/munanadi/anchorlang-vscode-extension"
},
"publisher": "munanadi",
"icon": "images/anchor-logo.png",
"categories": [],
"keywords": [
"anchor-lang",
"solana",
"intellisense",
"autocomplete",
"vscode"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:rust"
],
"main": "./out/extension",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./src --ext .ts,.tsx"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"mocha": "^9.2.1",
"typescript": "^5.0.2",
"@types/vscode": "^1.75.1",
"@vscode/test-electron": "^2.2.3"
}
}