-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.1 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.1 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
{
"name": "vscode-cookbook",
"displayName": "Cookbook.dev - Smart Contracts",
"publisher": "cookbookdev",
"repository": {
"type": "git",
"url": "https://github.com/Breakthrough-Labs/vscode-cookbook"
},
"description": "Find any smart contract, build your project faster",
"version": "0.0.22",
"icon": "public/logo.png",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onUri",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "custom-activitybar",
"title": "Cookbook.dev",
"icon": "logo.svg"
}
]
},
"views": {
"custom-activitybar": [
{
"type": "webview",
"id": "cookbook.contracts",
"name": "Contracts",
"contextualTitle": "Contracts"
}
]
},
"commands": [
{
"command": "cookbook.contracts",
"title": "Sidebar View"
},
{
"command": "cookbook.open",
"title": "Cookbook Contract Opener"
},
{
"command": "cookbook.track",
"title": "Cookbook Usage Tracker"
},
{
"command": "cookbook.menu.view",
"category": "vscode-extension-sidebar-html",
"title": "Sample WebView in VS Code Sidebar",
"icon": "$(clear-all)"
}
],
"menus": {
"view/title": [
{
"command": "cookbook.menu.view",
"group": "navigation",
"when": "view == cookbook.contracts"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run build && yarn run compile",
"compile": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./ext-src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"build": "react-scripts build",
"start": "react-scripts start",
"watch": "tsc -watch -p tsconfig.json",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "^1.4.0",
"bootstrap": "^5.2.3",
"device-uuid": "^1.0.4",
"marked-react": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.10",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}