mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-19 01:17:31 +00:00
148 lines
3.5 KiB
JSON
148 lines
3.5 KiB
JSON
{
|
|
"name": "@sp/sync-providers",
|
|
"version": "1.0.0",
|
|
"description": "Framework-agnostic sync provider contracts for Super Productivity sync",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
"./dropbox": {
|
|
"import": {
|
|
"types": "./dist/dropbox.d.mts",
|
|
"default": "./dist/dropbox.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/dropbox.d.ts",
|
|
"default": "./dist/dropbox.js"
|
|
}
|
|
},
|
|
"./webdav": {
|
|
"import": {
|
|
"types": "./dist/webdav.d.mts",
|
|
"default": "./dist/webdav.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/webdav.d.ts",
|
|
"default": "./dist/webdav.js"
|
|
}
|
|
},
|
|
"./local-file": {
|
|
"import": {
|
|
"types": "./dist/local-file.d.mts",
|
|
"default": "./dist/local-file.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/local-file.d.ts",
|
|
"default": "./dist/local-file.js"
|
|
}
|
|
},
|
|
"./super-sync": {
|
|
"import": {
|
|
"types": "./dist/super-sync.d.mts",
|
|
"default": "./dist/super-sync.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/super-sync.d.ts",
|
|
"default": "./dist/super-sync.js"
|
|
}
|
|
},
|
|
"./http": {
|
|
"import": {
|
|
"types": "./dist/http.d.mts",
|
|
"default": "./dist/http.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/http.d.ts",
|
|
"default": "./dist/http.js"
|
|
}
|
|
},
|
|
"./errors": {
|
|
"import": {
|
|
"types": "./dist/errors.d.mts",
|
|
"default": "./dist/errors.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/errors.d.ts",
|
|
"default": "./dist/errors.js"
|
|
}
|
|
},
|
|
"./credential-store": {
|
|
"import": {
|
|
"types": "./dist/credential-store.d.mts",
|
|
"default": "./dist/credential-store.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/credential-store.d.ts",
|
|
"default": "./dist/credential-store.js"
|
|
}
|
|
},
|
|
"./file-based": {
|
|
"import": {
|
|
"types": "./dist/file-based.d.mts",
|
|
"default": "./dist/file-based.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/file-based.d.ts",
|
|
"default": "./dist/file-based.js"
|
|
}
|
|
},
|
|
"./pkce": {
|
|
"import": {
|
|
"types": "./dist/pkce.d.mts",
|
|
"default": "./dist/pkce.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/pkce.d.ts",
|
|
"default": "./dist/pkce.js"
|
|
}
|
|
},
|
|
"./platform": {
|
|
"import": {
|
|
"types": "./dist/platform.d.mts",
|
|
"default": "./dist/platform.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/platform.d.ts",
|
|
"default": "./dist/platform.js"
|
|
}
|
|
},
|
|
"./provider-types": {
|
|
"import": {
|
|
"types": "./dist/provider-types.d.mts",
|
|
"default": "./dist/provider-types.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/provider-types.d.ts",
|
|
"default": "./dist/provider-types.js"
|
|
}
|
|
},
|
|
"./log": {
|
|
"import": {
|
|
"types": "./dist/log.d.mts",
|
|
"default": "./dist/log.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/log.d.ts",
|
|
"default": "./dist/log.js"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"hash-wasm": "^4.12.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@sp/sync-core": "*"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:tsc": "tsc",
|
|
"test": "npm run test:typecheck && vitest run",
|
|
"test:typecheck": "tsc --noEmit -p tsconfig.spec.json",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@sp/sync-core": "*",
|
|
"@xmldom/xmldom": "^0.8.12",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|