vtb-appit 0.0.79 → 0.0.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/appit.js +2 -0
  2. package/package.json +10 -12
package/appit.js CHANGED
@@ -1,6 +1,8 @@
1
1
  const fs = require("fs");
2
2
  const pth = require("path");
3
3
  const https = require('https');
4
+ const FormData = require('form-data');
5
+ const axios = require('axios');
4
6
 
5
7
  class Appit {
6
8
 
package/package.json CHANGED
@@ -1,14 +1,12 @@
1
1
  {
2
- "name": "vtb-appit",
3
- "version": "0.0.79",
4
- "description": "",
5
- "main": "index.js",
6
- "scripts": {
7
- },
8
- "author": "Chris Kanger",
9
- "license": "ISC",
10
- "dependencies": {
11
-
12
- }
2
+ "name": "vtb-appit",
3
+ "version": "0.0.80",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "author": "Chris Kanger",
8
+ "license": "ISC",
9
+ "dependencies": {
10
+ "axios": "^1.6.8"
13
11
  }
14
-
12
+ }