Browse Source

Add node version requirement to README (#206)

* Update README.md

* add engines to package.json
Robert Brennan 1 year ago
parent
commit
7cdfe63432
3 changed files with 7 additions and 1 deletions
  1. 1 1
      README.md
  2. 3 0
      frontend/package-lock.json
  3. 3 0
      frontend/package.json

+ 1 - 1
README.md

@@ -19,7 +19,7 @@ OpenDevin is still a work in progress. But you can run the alpha version to see
 ### Requirements
 * [Docker](https://docs.docker.com/engine/install/)
 * [Python](https://www.python.org/downloads/) >= 3.10
-* [NPM](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
+* [NodeJS](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) >= 14.8
 
 ### Installation
 ```bash

+ 3 - 0
frontend/package-lock.json

@@ -47,6 +47,9 @@
         "lint-staged": "^15.2.2",
         "prettier": "^3.2.5",
         "ts-jest": "^29.1.2"
+      },
+      "engines": {
+        "node": ">=14.8.0"
       }
     },
     "node_modules/@aashutoshrathi/word-wrap": {

+ 3 - 0
frontend/package.json

@@ -3,6 +3,9 @@
   "version": "0.1.0",
   "private": true,
   "type": "module",
+  "engines" : {
+    "node" : ">=14.8.0"
+  },
   "dependencies": {
     "@monaco-editor/react": "^4.6.0",
     "@reduxjs/toolkit": "^2.2.2",