forked from Echo-Mirror-Butler/echomirror-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
140 lines (140 loc) · 3.9 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "echomirror-sdk-vscode",
"displayName": "EchoMirror SDK",
"description": "EchoMirror SDK developer tools — Stellar address validation, mood log snippets, blockchain sync explorer, and live ECHO balance in the status bar",
"version": "0.1.0",
"publisher": "EchoMirrorButler",
"engines": {
"vscode": "^1.88.0"
},
"categories": ["Other", "Snippets", "Debuggers"],
"keywords": ["stellar", "blockchain", "wellness", "echomirror", "web3"],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "echomirror.checkBalance",
"title": "EchoMirror: Check Stellar Balance"
},
{
"command": "echomirror.validateAddress",
"title": "EchoMirror: Validate Stellar Address"
},
{
"command": "echomirror.fundTestnet",
"title": "EchoMirror: Fund Testnet Account (Friendbot)"
},
{
"command": "echomirror.openSyncExplorer",
"title": "EchoMirror: Open Blockchain Sync Explorer"
},
{
"command": "echomirror.insertMoodLogSnippet",
"title": "EchoMirror: Insert Mood Log Code Snippet"
},
{
"command": "echomirror.logMood",
"title": "EchoMirror: Log Mood"
},
{
"command": "echomirror.viewStreak",
"title": "EchoMirror: View Streak"
},
{
"command": "echomirror.signIn",
"title": "EchoMirror: Sign In"
},
{
"command": "echomirror.signOut",
"title": "EchoMirror: Sign Out"
}
],
"configuration": {
"title": "EchoMirror SDK",
"properties": {
"echomirror.apiKey": {
"type": "string",
"default": "",
"description": "Your EchoMirror API key (echomirror.dev/developers)"
},
"echomirror.network": {
"type": "string",
"enum": ["mainnet", "testnet"],
"default": "testnet",
"description": "Stellar network to connect to"
},
"echomirror.statusBarPublicKey": {
"type": "string",
"default": "",
"description": "Stellar public key to show live ECHO balance in status bar"
},
"echomirror.showStatusBar": {
"type": "boolean",
"default": true,
"description": "Show live ECHO balance in the VS Code status bar"
}
}
},
"snippets": [
{
"language": "typescript",
"path": "./snippets/echomirror.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/echomirror.code-snippets"
},
{
"language": "dart",
"path": "./snippets/echomirror-dart.code-snippets"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "echomirror",
"title": "EchoMirror SDK"
}
]
},
"views": {
"echomirror": [
{
"id": "echomirror.syncExplorer",
"name": "Blockchain Sync Explorer"
},
{
"id": "echomirror.walletView",
"name": "Stellar Wallet"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"package": "vsce package --no-dependencies",
"lint": "eslint src"
},
"dependencies": {
"@echomirror/core": "*",
"@echomirror/mood": "*"
},
"devDependencies": {
"@types/vscode": "^1.88.0",
"@types/node": "^20.0.0",
"typescript": "^5.4.0",
"@vscode/vsce": "^2.26.0",
"esbuild": "^0.20.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Echo-Mirror-Butler/echomirror-sdk"
},
"license": "MIT"
}