AFFiNE/packages/y-indexeddb/package.json
2023-09-13 17:10:43 -07:00

51 lines
1.1 KiB
JSON

{
"name": "@toeverything/y-indexeddb",
"type": "module",
"version": "0.9.0-canary.12",
"description": "IndexedDB database adapter for Yjs",
"repository": "toeverything/AFFiNE",
"author": "toeverything",
"license": "MPL-2.0",
"keywords": [
"indexeddb",
"yjs",
"yjs-adapter"
],
"scripts": {
"build": "vite build"
},
"files": [
"dist"
],
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
}
},
"dependencies": {
"idb": "^7.1.1"
},
"devDependencies": {
"@affine/y-provider": "workspace:*",
"@blocksuite/blocks": "0.0.0-20230911110410-f65fc3ab-nightly",
"@blocksuite/store": "0.0.0-20230911110410-f65fc3ab-nightly",
"vite": "^4.4.9",
"vite-plugin-dts": "3.5.3",
"y-indexeddb": "^9.0.11"
},
"peerDependencies": {
"yjs": "^13"
}
}