nowbackup 1.0.3

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/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "nowbackup",
3
+ "version": "1.0.3",
4
+ "description": "Universal Database Auto Backup SDK and CLI for Node.js and Enterprise Environments",
5
+ "type": "module",
6
+ "author": "Nowmail Team",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/jd-ashish/nowbackup.git"
11
+ },
12
+ "keywords": [
13
+ "nowbackup",
14
+ "backup",
15
+ "database",
16
+ "database-backup",
17
+ "cron",
18
+ "s3",
19
+ "encryption",
20
+ "compression",
21
+ "postgres",
22
+ "mysql",
23
+ "sqlite",
24
+ "mongodb",
25
+ "redis",
26
+ "mssql",
27
+ "cassandra",
28
+ "neo4j"
29
+ ],
30
+ "bin": {
31
+ "nowbackup": "./dist/bin.js"
32
+ },
33
+ "main": "./dist/index.cjs",
34
+ "module": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.js",
40
+ "require": "./dist/index.cjs"
41
+ }
42
+ },
43
+ "files": [
44
+ "dist"
45
+ ],
46
+ "scripts": {
47
+ "build": "tsup src/index.ts src/bin.ts --format esm,cjs --clean --shims --external mysql2,pg,mssql,cassandra-driver,neo4j-driver",
48
+ "dev": "tsup src/index.ts src/bin.ts --format esm,cjs --watch --external mysql2,pg,mssql,cassandra-driver,neo4j-driver",
49
+ "prepublishOnly": "npm run build"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^25.8.0",
53
+ "tsup": "^8.5.1",
54
+ "@nowbackup/shared": "1.0.3",
55
+ "@nowbackup/drivers": "1.0.3",
56
+ "@nowbackup/encryption": "1.0.3",
57
+ "@nowbackup/providers": "1.0.3",
58
+ "@nowbackup/compression": "1.0.3"
59
+ },
60
+ "dependencies": {
61
+ "node-cron": "^3.0.0",
62
+ "commander": "^11.0.0"
63
+ }
64
+ }