-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
137 lines (137 loc) · 4.13 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
{
"name": "remix-light",
"displayName": "remix-light",
"version": "0.1.3",
"description": "A light version of the Remix Ethereum IDE as a VSCode extension",
"author": "maxdavid",
"publisher": "maxdavidwow",
"license": "MIT",
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/maxdavidwow/remix-light"
},
"keywords": [
"solidity",
"ethereum",
"blockchain",
"compiler",
"remix"
],
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Debuggers",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Remix Light",
"properties": {
"remix-light.useCompiler": {
"order": 1,
"type": "boolean",
"default": true,
"description": "Defines if the compiler should be active."
},
"remix-light.autoCompile": {
"order": 2,
"type": "boolean",
"default": false,
"description": "Defines if contracts should be automaitcally compiled when saved."
},
"remix-light.contractGlobPattern": {
"order": 3,
"type": "string",
"default": "**/*.sol",
"description": "Pattern used to search for solidity contract files used by the compiler."
},
"remix-light.artifactGlobPattern": {
"order": 4,
"type": "string",
"default": null,
"description": "Pattern used to search for contract artifact files wich will be added to the deployable contracts.\nNote that files defined by this glob pattern should be valid .json files as they will be interpreted as such!"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "remix-light",
"title": "remix-light",
"icon": "./logo.svg"
}
]
},
"views": {
"remix-light": [
{
"type": "webview",
"id": "remix-light-view",
"name": "Panel"
}
]
},
"menus": {
"view/title": [
{
"command": "remix-light.reload",
"when": "remix-light.debug == true",
"group": "navigation"
}
]
},
"commands": [
{
"command": "remix-light.reload",
"title": "Reload",
"icon": "$(refresh)"
}
]
},
"scripts": {
"extension-bundle": "esbuild ./src/extension.ts --bundle --outdir=./dist --external:vscode --external:electron --platform=node --format=cjs --tsconfig=./tsconfig.extension.json",
"extension-dev": "npm run extension-bundle -- --sourcemap=inline --watch --define:DEBUG=true",
"react-bundle": "esbuild ./src/remix-view/index.tsx --bundle --outdir=./dist/remix-view --tsconfig=./tsconfig.remixview.json",
"react-dev": "npm run react-bundle -- --sourcemap=inline --watch --define:DEBUG=true",
"css": "tailwindcss -i ./src/remix-view/index.css -o ./dist/remix-view/index.css",
"css-dev": "npm run css -- --watch",
"copy-assets": "node copyAssets.js",
"dev": "concurrently 'npm:extension-dev' 'npm:css-dev' 'npm:react-dev' 'npm:copy-assets'",
"start": "npm run dev",
"build": "npm run extension-bundle -- --minify --define:DEBUG=false && npm run react-bundle --minify --define:DEBUG=false && npm run css && npm run copy-assets",
"package": "vsce package --githubBranch=main"
},
"dependencies": {
"@remix-project/remix-simulator": "^0.2.10",
"@vscode/codicons": "0.0.28",
"ethereumjs-util": "^7.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rxjs": "^7.5.4",
"solc": "^0.8.25",
"web3": "^1.7.0"
},
"devDependencies": {
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.12",
"@types/node": "^17.0.21",
"@types/vscode": "^1.34.0",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"concurrently": "^7.0.0",
"esbuild": "^0.14.23",
"eslint": "^8.9.0",
"postcss": "^8.4.7",
"tailwindcss": "^3.0.23",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vsce": "^2.6.7"
}
}