AFFiNE/packages/common/y-indexeddb/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2023-04-02 10:57:50 +03:00
{
"name": "@toeverything/y-indexeddb",
"type": "module",
2023-11-20 18:53:50 +03:00
"version": "0.11.0-canary.0",
"description": "IndexedDB database adapter for Yjs",
"repository": "toeverything/AFFiNE",
"author": "toeverything",
2023-09-20 04:19:54 +03:00
"license": "MIT",
"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
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.umd.cjs"
2023-04-02 10:57:50 +03:00
}
}
},
"dependencies": {
"idb": "^7.1.1",
"nanoid": "^5.0.1",
"y-provider": "workspace:*"
2023-04-02 10:57:50 +03:00
},
"devDependencies": {
2023-11-16 09:27:39 +03:00
"@blocksuite/blocks": "0.0.0-20231116023037-31273bb7-nightly",
"@blocksuite/store": "0.0.0-20231116023037-31273bb7-nightly",
2023-10-16 15:47:06 +03:00
"fake-indexeddb": "^5.0.0",
"vite": "^4.4.11",
2023-10-13 23:40:07 +03:00
"vite-plugin-dts": "3.6.0",
"vitest": "0.34.6",
"y-indexeddb": "^9.0.11",
"yjs": "^13.6.8"
2023-04-02 10:57:50 +03:00
},
"peerDependencies": {
"yjs": "^13"
}
2023-04-02 10:57:50 +03:00
}