Skip to content

Commit

Permalink
parser and AST for ethereum plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
albertolerda committed Sep 28, 2023
1 parent 837dc41 commit 52565a8
Show file tree
Hide file tree
Showing 7 changed files with 1,161 additions and 21 deletions.
1 change: 1 addition & 0 deletions pkg/ethereum/.npmignore
37 changes: 37 additions & 0 deletions pkg/ethereum/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "@slangroom/ethereum",
"version": "1.0.0",
"dependencies": {
"@slangroom/core": "workspace:*",
"@slangroom/deps": "workspace:*",
"@slangroom/shared": "workspace:*",
"web3": "^4.1.2"
},
"repository": "https://github.com/dyne/slangroom",
"license": "AGPL-3.0-only",
"type": "module",
"main": "./build/cjs/src/index.js",
"types": "./build/cjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./build/esm/src/index.d.ts",
"default": "./build/esm/src/index.js"
},
"require": {
"types": "./build/cjs/src/index.d.ts",
"default": "./build/cjs/src/index.js"
}
},
"./*": {
"import": {
"types": "./build/esm/src/*.d.ts",
"default": "./build/esm/src/*.js"
},
"require": {
"types": "./build/cjs/src/*.d.ts",
"default": "./build/cjs/src/*.js"
}
}
}
}
Loading

0 comments on commit 52565a8

Please sign in to comment.