forked from toeverything/blocksuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@blocksuite/store",
"version": "0.4.0-alpha.0",
"description": "BlockSuite data store built for general purpose state management.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"serve": "cross-env PORT=4444 node node_modules/y-webrtc/bin/server.js",
"build": "tsc",
"test:unit": "vitest --run",
"test:e2e": "playwright test",
"test": "pnpm test:unit && pnpm test:e2e"
},
"keywords": [],
"author": "toeverything",
"license": "MPL-2.0",
"dependencies": {
"@blocksuite/global": "workspace:*",
"@types/flexsearch": "^0.7.3",
"@types/quill": "^1.3.7",
"buffer": "^6.0.3",
"flexsearch": "0.7.21",
"idb-keyval": "^6.2.0",
"ky": "^0.33.1",
"lib0": "^0.2.58",
"y-protocols": "^1.0.5",
"y-webrtc": "^10.2.3"
},
"devDependencies": {
"cross-env": "^7.0.3",
"lit": "^2.6.0",
"yjs": "^13.5.44"
},
"peerDependencies": {
"yjs": "^13"
},
"exports": {
"./src/*": "./src/*.ts",
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./src/*": "./dist/*.js",
".": "./dist/index.js"
}
}
}