You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
70 lines
1.9 KiB
8 years ago
|
{
|
||
|
"name": "remixd",
|
||
4 years ago
|
"version": "0.2.4-alpha.0",
|
||
7 years ago
|
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",
|
||
5 years ago
|
"main": "./lib/src/index.js",
|
||
5 years ago
|
"types": "./lib/src/index.d.ts",
|
||
7 years ago
|
"bin": {
|
||
5 years ago
|
"remixd": "./lib/bin/remixd.js"
|
||
7 years ago
|
},
|
||
8 years ago
|
"scripts": {
|
||
5 years ago
|
"test": "echo \"Error: no test specified\"",
|
||
4 years ago
|
"start": "./lib/bin/remixd.js",
|
||
6 years ago
|
"npip": "npip",
|
||
5 years ago
|
"lint": "eslint ./src ./bin --ext .ts",
|
||
5 years ago
|
"build": "tsc -p ./ && chmod +x ./lib/bin/remixd.js",
|
||
5 years ago
|
"dev": "nodemon"
|
||
8 years ago
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
8 years ago
|
"url": "git+https://github.com/ethereum/remixd.git"
|
||
8 years ago
|
},
|
||
|
"keywords": [
|
||
|
"remix",
|
||
|
"ide",
|
||
|
"ethereum",
|
||
|
"solidity"
|
||
|
],
|
||
8 years ago
|
"author": "cpp ethereum team",
|
||
8 years ago
|
"license": "MIT",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/ethereum/remixd/issues"
|
||
|
},
|
||
8 years ago
|
"homepage": "https://github.com/ethereum/remixd#readme",
|
||
|
"dependencies": {
|
||
4 years ago
|
"@remixproject/plugin": "0.3.0-beta.5",
|
||
|
"@remixproject/plugin-api": "0.3.0-beta.5",
|
||
|
"@remixproject/plugin-utils": "0.3.0-beta.5",
|
||
4 years ago
|
"@remixproject/plugin-ws": "^0.3.0-beta.8",
|
||
4 years ago
|
"axios": "^0.20.0",
|
||
5 years ago
|
"chokidar": "^2.1.8",
|
||
5 years ago
|
"commander": "^2.20.3",
|
||
5 years ago
|
"fs-extra": "^3.0.1",
|
||
8 years ago
|
"isbinaryfile": "^3.0.2",
|
||
5 years ago
|
"ws": "^7.3.0"
|
||
6 years ago
|
},
|
||
|
"python": {
|
||
|
"execPath": "python3",
|
||
|
"dependencies": {
|
||
|
"vyper": ">=0.1.0b3"
|
||
|
}
|
||
5 years ago
|
},
|
||
|
"devDependencies": {
|
||
4 years ago
|
"@types/axios": "^0.14.0",
|
||
5 years ago
|
"@types/fs-extra": "^9.0.1",
|
||
5 years ago
|
"@types/node": "^14.0.5",
|
||
5 years ago
|
"@types/ws": "^7.2.4",
|
||
5 years ago
|
"@typescript-eslint/eslint-plugin": "^3.2.0",
|
||
|
"@typescript-eslint/parser": "^3.2.0",
|
||
5 years ago
|
"eslint": "6.8.0",
|
||
|
"eslint-config-standard": "14.1.1",
|
||
|
"eslint-plugin-import": "2.20.2",
|
||
|
"eslint-plugin-node": "11.1.0",
|
||
|
"eslint-plugin-promise": "4.2.1",
|
||
5 years ago
|
"eslint-plugin-standard": "4.0.1",
|
||
|
"nodemon": "^2.0.4",
|
||
|
"ts-node": "^8.10.1",
|
||
|
"typescript": "^3.9.3"
|
||
8 years ago
|
}
|
||
8 years ago
|
}
|