Setup typescript for remixd
Showing
bin/remixd
→
bin/remixd.ts
100755 → 100644
lib/remixd.d.ts
0 → 100644
lib/remixd.js
0 → 100644
nodemon.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
... | @@ -2,15 +2,16 @@ | ... | @@ -2,15 +2,16 @@ |
"name": "remixd", | "name": "remixd", | ||
"version": "0.1.8-alpha.16", | "version": "0.1.8-alpha.16", | ||
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)", | "description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)", | ||
"main": "./src/index.js", | "main": "./lib/src/index.js", | ||
"bin": { | "bin": { | ||
"remixd": "./bin/remixd" | "remixd": "./lib/bin/remixd" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"test": "echo \"Error: no test specified\"", | "test": "echo \"Error: no test specified\"", | ||
"start": "./bin/remixd", | "start": "./lib/bin/remixd", | ||
"npip": "npip", | "npip": "npip", | ||
"lint": "eslint ./src" | "lint": "eslint ./src", | ||
"build": "tsc -p ./" | |||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
... | @@ -44,11 +45,16 @@ | ... | @@ -44,11 +45,16 @@ |
} | } | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@types/node": "^14.0.5", | |||
"@types/websocket": "^1.0.0", | |||
"eslint": "6.8.0", | "eslint": "6.8.0", | ||
"eslint-config-standard": "14.1.1", | "eslint-config-standard": "14.1.1", | ||
"eslint-plugin-import": "2.20.2", | "eslint-plugin-import": "2.20.2", | ||
"eslint-plugin-node": "11.1.0", | "eslint-plugin-node": "11.1.0", | ||
"eslint-plugin-promise": "4.2.1", | "eslint-plugin-promise": "4.2.1", | ||
"eslint-plugin-standard": "4.0.1" | "eslint-plugin-standard": "4.0.1", | ||
"nodemon": "^2.0.4", | |||
"ts-node": "^8.10.1", | |||
"typescript": "^3.9.3" | |||
} | } | ||
} | } |
tsconfig.json
0 → 100644
Please
register
or
sign in
to comment