-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
198 lines (198 loc) · 5.73 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
{
"name": "veramo-vscode",
"displayName": "Veramo",
"description": "Verifiable data management",
"version": "0.0.7",
"license": "Apache-2",
"publisher": "veramo",
"icon": "images/logo.png",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/veramolabs/veramo-vscode.git"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onLanguage:json",
"onLanguage:yaml",
"onStartupFinished"
],
"main": "./dist/extension.cjs",
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewScripts": [
"./dist/markdown-page.cjs"
],
"markdown.previewStyles": [
"./dist/main.css"
],
"commands": [
{
"command": "veramo.sign-markdown-matter",
"title": "Sign markdown (front matter)",
"category": "Veramo"
},
{
"command": "veramo.sign-credential",
"title": "Sign credential",
"category": "Veramo"
},
{
"command": "veramo.verify-credential",
"title": "Verify credential",
"category": "Veramo"
},
{
"command": "veramo.verify",
"title": "Verify JWT",
"category": "Veramo"
},
{
"command": "veramo.resolve-did",
"title": "Resolve DID",
"category": "Veramo"
},
{
"title": "Enable CodeLens",
"command": "veramo.enableCodeLens",
"category": "Veramo"
},
{
"title": "Disable Codelens",
"command": "veramo.disableCodeLens",
"category": "Veramo"
},
{
"title": "Use Remote Instance",
"command": "veramo.useRemoteInstance",
"category": "Veramo"
},
{
"title": "Use Local Instance",
"command": "veramo.useLocalInstance",
"category": "Veramo"
},
{
"title": "Update status bar item",
"command": "veramo.updateStatusBarItem",
"category": "Veramo"
}
],
"configuration": {
"properties": {
"veramo.enableCodeLens": {
"type": "boolean",
"default": true,
"description": "Show inline verification results of 'json+vc' / 'jwt+vc' code blocks in markdown files"
},
"veramo.useRemoteInstance": {
"type": "boolean",
"default": false,
"description": "You can start your remote instance by running `npx @veramo/cli server`"
},
"veramo.remoteAgentUrl": {
"type": "string",
"default": "http://localhost:3332/agent"
},
"veramo.remoteAgentApiKey": {
"type": "string",
"default": "test123"
},
"veramo.contextFolder": {
"type": "string",
"default": "context",
"description": "Used for storing SignedFile credentials"
}
}
},
"workbench.colorCustomizations": {
"error": "#FFAA00"
}
},
"scripts": {
"vscode:prepublish": "pnpm package",
"compile": "webpack",
"compile-page:dev": "webpack --config ./webpack-page.config.cjs",
"compile-page": "webpack --mode=production --config ./webpack-page.config.cjs",
"watch": "webpack --watch",
"watch-page": "webpack --watch --config ./webpack-page.config.cjs",
"package": "webpack --mode production --devtool hidden-source-map && pnpm compile-page",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm compile-tests && pnpm compile && pnpm lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"update:veramo": "pnpm add @veramo/core @veramo/credential-w3c @veramo/credential-ld@next @veramo/credential-eip712 @veramo/did-jwt @veramo/did-resolver @veramo/message-handler did-jwt-vc did-resolver ethr-did-resolver web-did-resolver @veramo/remote-client @veramo/did-provider-key @veramo/did-provider-pkh",
"update:veramo:next": "pnpm add @veramo/core@next @veramo/credential-w3c@next @veramo/credential-ld@next @veramo/credential-eip712@next @veramo/did-jwt@next @veramo/did-resolver@next @veramo/message-handler@next did-jwt-vc did-resolver ethr-did-resolver web-did-resolver @veramo/remote-client@next @veramo/did-provider-key@next @veramo/did-provider-pkh@next"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.8",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vscode/test-electron": "^2.1.2",
"css-loader": "^6.7.3",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mini-css-extract-plugin": "^2.7.2",
"mocha": "^9.2.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@ceramicnetwork/3id-did-resolver": "^2.13.0",
"@ceramicnetwork/http-client": "^2.17.0",
"@ipld/dag-pb": "^4.0.2",
"@transmute/credentials-context": "0.7.0-unstable.80",
"@types/blake2": "^4.0.1",
"@types/markdown-it": "^12.2.3",
"@veramo-community/react-components": "^1.4.0",
"@veramo/core": "5.1.5-next.4",
"@veramo/credential-eip712": "5.1.5-next.4",
"@veramo/credential-ld": "5.1.5-next.4",
"@veramo/credential-w3c": "5.1.5-next.4",
"@veramo/did-jwt": "5.1.5-next.4",
"@veramo/did-provider-key": "5.1.5-next.4",
"@veramo/did-provider-pkh": "5.1.5-next.4",
"@veramo/did-resolver": "5.1.5-next.4",
"@veramo/message-handler": "5.1.5-next.4",
"@veramo/remote-client": "5.1.5-next.4",
"buffer": "^6.0.3",
"cross-fetch": "^3.1.5",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.28.0",
"did-jwt-vc": "^3.1.1",
"did-resolver": "^4.0.1",
"ethr-did-resolver": "^8.0.0",
"gray-matter": "^4.0.3",
"html-entities": "^2.3.3",
"jwt-decode": "^3.1.2",
"multiformats": "^11.0.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-browserify": "^3.0.0",
"web-did-resolver": "^2.0.21",
"yaml": "^2.2.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"expo",
"react-native"
]
}
}
}