-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 2.82 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
{
"name": "agoric-vscode",
"version": "1.0.9",
"displayName": "Agoric",
"description": "Deploy secure DeFi in JavaScript",
"main": "./out/src/extension.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/src/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "rm -rf out && npm run esbuild-base -- --sourcemap",
"test": "rm -rf out && tsc -watch -p ./ && node ./out/src/test/runTest.js",
"lint": "eslint src --ext ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/danBamikiya/agoric-vscode-extension.git"
},
"keywords": [
"agoric",
"setup",
"javascript",
"js",
"smart contracts"
],
"author": "Dan Bamikiya <twitter.com/@danBamikiya>",
"publisher": "danbmky",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/danBamikiya/agoric-vscode-extension/issues"
},
"homepage": "https://github.com/danBamikiya/agoric-vscode-extension/blob/main/README.md",
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"icon": "resources/agoric.png",
"categories": [
"Debuggers"
],
"extensionKind": [
"workspace"
],
"activationEvents": [
"onStartupFinished",
"onCommand:agoric.install"
],
"engines": {
"vscode": "^1.63.0"
},
"contributes": {
"commands": [
{
"command": "agoric.install",
"title": "Agoric: Install/Update the SDK"
}
],
"configuration": {
"title": "Agoric",
"type": "object",
"properties": {
"agoric.autoUpdate": {
"type": "boolean",
"default": true,
"description": "Auto update Agoric SDK on startup"
},
"agoric.installDir": {
"type": "string",
"default": null,
"description": "An explicit path where Agoric SDK will be cloned into"
}
}
},
"keybindings": [
{
"command": "agoric.install",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a"
}
]
},
"private": true,
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@types/babel__core": "^7.1.12",
"@types/chai": "^4.2.15",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/sinon": "^9.0.10",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.3.0",
"esbuild": "^0.14.49",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"semantic-release": "^17.3.9",
"sinon": "^9.2.4",
"typescript": "^4.1.3",
"vscode-test": "^1.6.1"
},
"dependencies": {
"command-exists": "^1.2.9",
"cross-spawn": "^7.0.3"
}
}