@tenonhq/sincronia-core 0.0.1
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.
- package/README.md +6 -0
- package/dist/index.js +18 -0
- package/package.json +58 -0
package/README.md
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
(function (factory) {
|
|
3
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
4
|
+
var v = factory(require, exports);
|
|
5
|
+
if (v !== undefined) module.exports = v;
|
|
6
|
+
}
|
|
7
|
+
else if (typeof define === "function" && define.amd) {
|
|
8
|
+
define(["require", "exports", "./bootstrap"], factory);
|
|
9
|
+
}
|
|
10
|
+
})(function (require, exports) {
|
|
11
|
+
"use strict";
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
const bootstrap_1 = require("./bootstrap");
|
|
14
|
+
function main() {
|
|
15
|
+
(0, bootstrap_1.init)();
|
|
16
|
+
}
|
|
17
|
+
main();
|
|
18
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tenonhq/sincronia-core",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Next-gen file syncer",
|
|
5
|
+
"license": "GPL-3.0",
|
|
6
|
+
"main": "./dist./index.js",
|
|
7
|
+
"author": "Multiple",
|
|
8
|
+
"private": false,
|
|
9
|
+
"scripts": {
|
|
10
|
+
"prepack": "tsc",
|
|
11
|
+
"test": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/tenon/sincronia.git"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=12.0.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@sincronia/types": "^0.4.2-alpha.3",
|
|
22
|
+
"@types/dotenv": "^6.1.1",
|
|
23
|
+
"@types/inquirer": "^9.0.4",
|
|
24
|
+
"@types/jest": "^29.5.5",
|
|
25
|
+
"@types/lodash": "^4.14.199",
|
|
26
|
+
"@types/node": "^20.8.4",
|
|
27
|
+
"@types/prettier": "^2.7.3",
|
|
28
|
+
"@types/progress": "^2.0.5",
|
|
29
|
+
"@types/yargs": "^17.0.28",
|
|
30
|
+
"jest": "^29.7.0",
|
|
31
|
+
"jest-junit": "^16.0.0",
|
|
32
|
+
"ts-jest": "^29.1.1",
|
|
33
|
+
"typescript": "^5.2.2"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"axios": "^1.5.1",
|
|
37
|
+
"axios-rate-limit": "^1.3.0",
|
|
38
|
+
"chalk": "^5.3.0",
|
|
39
|
+
"chokidar": "^3.5.3",
|
|
40
|
+
"dotenv": "^16.3.1",
|
|
41
|
+
"inquirer": "^9.2.11",
|
|
42
|
+
"lodash": "^4.17.21",
|
|
43
|
+
"prettier": "3.0.3",
|
|
44
|
+
"progress": "^2.0.3",
|
|
45
|
+
"winston": "^3.11.0",
|
|
46
|
+
"yargs": "^17.7.2"
|
|
47
|
+
},
|
|
48
|
+
"bin": {
|
|
49
|
+
"sinc": "./dist/index.js"
|
|
50
|
+
},
|
|
51
|
+
"files": [
|
|
52
|
+
"dist"
|
|
53
|
+
],
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
},
|
|
57
|
+
"gitHead": "67b694054cf072be150b9bd4dc3d1b01f8e24ed9"
|
|
58
|
+
}
|