-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "solc-browserify",
"version": "1.3.0",
"description": "Solidity compiler for the browser",
"keywords": [
"solidity",
"browser",
"typescript",
"javascript",
"react",
"vuejs",
"angular",
"nodejs",
"ethereum",
"web3",
"compiler"
],
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/zianksm/solc-browserify"
},
"homepage": "https://github.com/zianksm/solc-browserify#readme",
"bugs": {
"url": "https://github.com/zianksm/solc-browserify/issues"
},
"main": "dist/index.js",
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"lint": "eslint .",
"build": "npx tsc && node worker-gen"
},
"author": "Zian <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.18",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint": "^8.24.0",
"solc": "^0.8.17",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}