Browse Source

update package.json to actually include some files

master
nitowa 7 months ago
parent
commit
07f90c3fd8
2 changed files with 7 additions and 7 deletions
  1. 1
    1
      README.md
  2. 6
    6
      package.json

+ 1
- 1
README.md View File

@@ -2,7 +2,7 @@
2 2
 
3 3
 [![Current Version](https://img.shields.io/npm/v/rjsvm.svg)](https://www.npmjs.com/package/rjsvm)
4 4
 [![Weekly Downloads](https://img.shields.io/npm/dw/rjsvm?color=important)](https://www.npmjs.com/package/rjsvm)
5
-[![License Type](https://img.shields.io/npm/l/rjsvm?color=blueviolet)](https://gitea.nitowa.xyz/docs/rjsvm/src/branch/master/LICENSE.md)
5
+[![License Type](https://img.shields.io/npm/l/rjsvm?color=blueviolet)](https://gitea.nitowa.xyz/npm-packages/rjsvm/src/branch/master/LICENSE.md)
6 6
 
7 7
 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.
8 8
 

+ 6
- 6
package.json View File

@@ -1,8 +1,8 @@
1 1
 {
2 2
   "name": "rjsvm",
3
-  "version": "0.2.0",
3
+  "version": "0.2.1",
4 4
   "description": "",
5
-  "main": "lib/main.js",
5
+  "main": "lib/src/main.js",
6 6
   "scripts": {
7 7
     "clean": "rm -rf lib",
8 8
     "start": "npm run build && npm run launch",
@@ -30,9 +30,9 @@
30 30
     "typescript": "^4.9.3"
31 31
   },
32 32
   "files": [
33
-    "lib/main.js",
34
-    "lib/main.d.ts",
35
-    "lib/util/*",
36
-    "lib/RJSVM/*"
33
+    "lib/src/main.js",
34
+    "lib/src/main.d.ts",
35
+    "lib/src/util/*",
36
+    "lib/src/RJSVM/*"
37 37
   ]
38 38
 }

Loading…
Cancel
Save