-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.63 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
{
"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.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solana-developers/vs-code-extension-pack.git"
},
"engines": {
"vscode": "^1.65.0"
},
"scripts": {
"build": "pnpm vsce package",
"vsc:publish": "pnpm vsce publish",
"changeset:version": "changeset version && git add -A && git commit -m \"chore: version\""
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@vscode/vsce": "^3.2.1"
},
"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",
"belfz.search-crates-io",
"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"
]
}