@rsweeten/dropbox-sync 0.1.0 → 0.1.2

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 (3) hide show
  1. package/README.md +315 -315
  2. package/package.json +74 -66
  3. package/src/core/sync.ts +476 -476
package/package.json CHANGED
@@ -1,66 +1,74 @@
1
- {
2
- "name": "@rsweeten/dropbox-sync",
3
- "version": "0.1.0",
4
- "description": "Reusable Dropbox synchronization module with framework adapters",
5
- "private": false,
6
- "publishConfig": {
7
- "access": "public"
8
- },
9
- "main": "dist/index.js",
10
- "types": "dist/index.d.ts",
11
- "scripts": {
12
- "build": "tsc",
13
- "test": "jest",
14
- "prepublishOnly": "npm run build"
15
- },
16
- "keywords": [
17
- "dropbox",
18
- "sync",
19
- "upload",
20
- "download",
21
- "file-sync"
22
- ],
23
- "author": "",
24
- "license": "MIT",
25
- "dependencies": {
26
- "dropbox": "^10.34.0",
27
- "socket.io": "^4.7.2",
28
- "socket.io-client": "^4.7.2"
29
- },
30
- "devDependencies": {
31
- "@angular/common": "^19.2.11",
32
- "@angular/core": "^19.2.11",
33
- "@sveltejs/kit": "^2.21.1",
34
- "@types/angular": "^1.8.9",
35
- "@types/jest": "^29.5.1",
36
- "@types/node": "^20.1.0",
37
- "h3": "^1.11.1",
38
- "jest": "^29.5.0",
39
- "next": "^15.3.2",
40
- "nuxt": "^3.10.3",
41
- "rxjs": "^7.8.2",
42
- "svelte": "^5.31.1",
43
- "ts-jest": "^29.1.0",
44
- "typescript": "^5.0.4"
45
- },
46
- "peerDependencies": {
47
- "@angular/core": ">=14.0.0",
48
- "next": ">=13.0.0",
49
- "nuxt": ">=3.0.0",
50
- "svelte": ">=3.0.0"
51
- },
52
- "peerDependenciesMeta": {
53
- "next": {
54
- "optional": true
55
- },
56
- "svelte": {
57
- "optional": true
58
- },
59
- "@angular/core": {
60
- "optional": true
61
- },
62
- "nuxt": {
63
- "optional": true
64
- }
65
- }
66
- }
1
+ {
2
+ "name": "@rsweeten/dropbox-sync",
3
+ "version": "0.1.2",
4
+ "description": "Reusable Dropbox synchronization module with framework adapters",
5
+ "private": false,
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "main": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/sweetenr/dropbox-sync-service.git"
14
+ },
15
+ "homepage": "https://github.com/sweetenr/dropbox-sync-service#readme",
16
+ "bugs": {
17
+ "url": "https://github.com/sweetenr/dropbox-sync-service/issues"
18
+ },
19
+ "scripts": {
20
+ "build": "tsc",
21
+ "test": "jest",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "keywords": [
25
+ "dropbox",
26
+ "sync",
27
+ "upload",
28
+ "download",
29
+ "file-sync"
30
+ ],
31
+ "author": "",
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "dropbox": "^10.34.0",
35
+ "socket.io": "^4.7.2",
36
+ "socket.io-client": "^4.7.2"
37
+ },
38
+ "devDependencies": {
39
+ "@angular/common": "^19.2.11",
40
+ "@angular/core": "^19.2.11",
41
+ "@sveltejs/kit": "^2.21.1",
42
+ "@types/angular": "^1.8.9",
43
+ "@types/jest": "^29.5.1",
44
+ "@types/node": "^20.1.0",
45
+ "h3": "^1.11.1",
46
+ "jest": "^29.5.0",
47
+ "next": "^15.3.2",
48
+ "nuxt": "^3.10.3",
49
+ "rxjs": "^7.8.2",
50
+ "svelte": "^5.31.1",
51
+ "ts-jest": "^29.1.0",
52
+ "typescript": "^5.0.4"
53
+ },
54
+ "peerDependencies": {
55
+ "@angular/core": ">=14.0.0",
56
+ "next": ">=13.0.0",
57
+ "nuxt": ">=3.0.0",
58
+ "svelte": ">=3.0.0"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "next": {
62
+ "optional": true
63
+ },
64
+ "svelte": {
65
+ "optional": true
66
+ },
67
+ "@angular/core": {
68
+ "optional": true
69
+ },
70
+ "nuxt": {
71
+ "optional": true
72
+ }
73
+ }
74
+ }