update package.json to actually include some files

This commit is contained in:
nitowa
2023-10-08 23:05:38 +02:00
parent 4317fd2bbb
commit 07f90c3fd8
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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.
+6 -6
View File
@@ -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/*"
]
}