From a3a8a559cacf0bf47c1aaf2e3b8dc5590a263793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Jim=C3=A9nez=20Rivera?= Date: Thu, 20 Mar 2025 17:45:38 +0100 Subject: [PATCH] Update package.json --- README.md | 25 ++++++++++++++----------- package.json | 2 +- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b4b710a1..5a52cfcb 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,32 @@ # Setup -This guide explains how to set up and build the node-win project. - ---- +This guide explains how to set up and build the `node-win` project. ## Prerequisites Before proceeding, ensure you have the following tools installed: -```markdown -- Python 3.10 (configured correctly). -- Node.js and yarn. -- node-gyp (global installation): +- **Python 3.10** +- **Node 18** + +```bash +nvm install 18 +``` + +- **yarn** + +```bash +npm install -g yarn ``` +- **node-gyp** + ```bash npm install -g node-gyp ``` - **Visual Studio** (not VS Code) for building native dependencies. ---- - ## Build Steps Run the following command to build the project: @@ -31,5 +36,3 @@ npm run build ``` This step compiles the necessary native bindings. - ---- diff --git a/package.json b/package.json index d904e00d..2000021d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@internxt/node-win", - "version": "1.0.1", + "version": "1.0.4", "description": "Drive desktop node addon", "main": "dist/index.ts", "types": "dist/index.d.ts",