AFFiNE/packages/y-indexeddb/package.json

49 lines
1.0 KiB
JSON
Raw Normal View History

2023-04-02 10:57:50 +03:00
{
"name": "@toeverything/y-indexeddb",
"type": "module",
2023-07-03 18:13:29 +03:00
"version": "0.7.0-canary.31",
"description": "IndexedDB database adapter for Yjs",
"repository": "toeverything/AFFiNE",
"author": "toeverything",
"keywords": [
"indexeddb",
"yjs",
"yjs-adapter"
],
2023-04-02 10:57:50 +03:00
"scripts": {
"build": "vite build"
},
"files": [
"dist"
],
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
2023-04-21 01:45:45 +03:00
"access": "public",
2023-04-02 10:57:50 +03:00
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
2023-05-01 02:40:24 +03:00
"types": "dist/index.d.ts",
2023-04-02 10:57:50 +03:00
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
}
},
"dependencies": {
"idb": "^7.1.1"
},
"devDependencies": {
2023-07-02 09:17:22 +03:00
"@blocksuite/blocks": "0.0.0-20230702013906-50f93499-nightly",
"@blocksuite/store": "0.0.0-20230702013906-50f93499-nightly",
2023-05-27 11:08:07 +03:00
"vite": "^4.3.9",
2023-07-01 11:26:43 +03:00
"vite-plugin-dts": "3.0.2",
2023-05-05 02:49:08 +03:00
"y-indexeddb": "^9.0.11"
2023-04-02 10:57:50 +03:00
},
"peerDependencies": {
"yjs": "^13.5.51"
}
2023-04-02 10:57:50 +03:00
}