-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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": "solana-vs-code-extension-pack",
"publisher": "solana-developers",
"displayName": "Solana Developers Pack",
"description": "A bundle of VS Code extensions for Solana development.",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solana-developers/vs-code-extension-pack.git"
},
"engines": {
"vscode": "^1.96.0"
},
"scripts": {
"vsc:package": "npx @vscode/vsce package",
"vsc:publish": "npx @vscode/vsce publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9"
},
"packageManager": "[email protected]",
"icon": "solana_devs.jpeg",
"categories": [
"Extension Packs"
],
"author": "nickfrosty",
"contributors": [
{
"name": "Nick Frostbutter",
"url": "https://github.com/nickfrosty"
}
],
"homepage": "https://github.com/solana-developers/vs-code-extension-pack/blob/master/README.md",
"extensionPack": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"fill-labs.dependi",
"usernamehw.errorlens",
"aaron-bond.better-comments",
"streetsidesoftware.code-spell-checker",
"mikestead.dotenv",
"steoates.autoimport",
"ms-vscode.vscode-typescript-next",
"unifiedjs.vscode-mdx",
"esbenp.prettier-vscode",
"redhat.vscode-yaml"
],
"keywords": [
"solana",
"web3",
"web3js",
"blockchain",
"crypto",
"dapps",
"wallet",
"rust",
"anchor",
"anchor-lang"
]
}