UNPKG

1.85 kBJSONView Raw
1{
2 "name": "remixd",
3 "version": "0.2.3-alpha.2",
4 "description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",
5 "main": "./lib/src/index.js",
6 "types": "./lib/src/index.d.ts",
7 "bin": {
8 "remixd": "./lib/bin/remixd.js"
9 },
10 "scripts": {
11 "test": "echo \"Error: no test specified\"",
12 "start": "./lib/bin/remixd.js -s /home/yann/Remix/remix-ide/contracts --remix-ide https://remix-alpha.ethereum.org",
13 "npip": "npip",
14 "lint": "eslint ./src ./bin --ext .ts",
15 "build": "tsc -p ./ && chmod +x ./lib/bin/remixd.js",
16 "dev": "nodemon"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/ethereum/remixd.git"
21 },
22 "keywords": [
23 "remix",
24 "ide",
25 "ethereum",
26 "solidity"
27 ],
28 "author": "cpp ethereum team",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/ethereum/remixd/issues"
32 },
33 "homepage": "https://github.com/ethereum/remixd#readme",
34 "dependencies": {
35 "@remixproject/plugin": "0.3.0-alpha.3",
36 "@remixproject/plugin-ws": "0.3.0-alpha.1",
37 "commander": "^2.20.3",
38 "isbinaryfile": "^3.0.2",
39 "ws": "^7.3.0",
40 "chokidar": "^2.1.8",
41 "fs-extra": "^3.0.1"
42 },
43 "python": {
44 "execPath": "python3",
45 "dependencies": {
46 "vyper": ">=0.1.0b3"
47 }
48 },
49 "devDependencies": {
50 "@types/fs-extra": "^9.0.1",
51 "@types/node": "^14.0.5",
52 "@types/ws": "^7.2.4",
53 "@typescript-eslint/eslint-plugin": "^3.2.0",
54 "@typescript-eslint/parser": "^3.2.0",
55 "eslint": "6.8.0",
56 "eslint-config-standard": "14.1.1",
57 "eslint-plugin-import": "2.20.2",
58 "eslint-plugin-node": "11.1.0",
59 "eslint-plugin-promise": "4.2.1",
60 "eslint-plugin-standard": "4.0.1",
61 "nodemon": "^2.0.4",
62 "ts-node": "^8.10.1",
63 "typescript": "^3.9.3"
64 }
65}