diff --git a/README.md b/README.md index 68eb349..06b6291 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Current Version](https://img.shields.io/npm/v/rjsvm.svg)](https://www.npmjs.com/package/rjsvm) [![Weekly Downloads](https://img.shields.io/npm/dw/rjsvm?color=important)](https://www.npmjs.com/package/rjsvm) -[![License Type](https://img.shields.io/npm/l/rjsvm?color=blueviolet)](https://gitea.nitowa.xyz/docs/rjsvm/src/branch/master/LICENSE.md) +[![License Type](https://img.shields.io/npm/l/rjsvm?color=blueviolet)](https://gitea.nitowa.xyz/npm-packages/rjsvm/src/branch/master/LICENSE.md) The Ripple JavaScript Virtual Machine, or RJSVM, aims to standardize and simplify the development of applications that employ the Ripple blockchain as state storage. Internally it employs [xrpIO](https://gitea.nitowa.xyz/npm-packages/xrpio) to read and write all necessary data. diff --git a/package.json b/package.json index 90f6ee6..2801f25 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "rjsvm", - "version": "0.2.0", + "version": "0.2.1", "description": "", - "main": "lib/main.js", + "main": "lib/src/main.js", "scripts": { "clean": "rm -rf lib", "start": "npm run build && npm run launch", @@ -30,9 +30,9 @@ "typescript": "^4.9.3" }, "files": [ - "lib/main.js", - "lib/main.d.ts", - "lib/util/*", - "lib/RJSVM/*" + "lib/src/main.js", + "lib/src/main.d.ts", + "lib/src/util/*", + "lib/src/RJSVM/*" ] }