forked from toeverything/blocksuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@blocksuite/store",
"version": "0.16.0",
"description": "BlockSuite data store built for general purpose state management.",
"type": "module",
"repository": "toeverything/blocksuite",
"scripts": {
"build": "tsc",
"test:unit": "nx vite:test --run",
"test:unit:coverage": "nx vite:test --run --coverage",
"test:unit:ui": "nx vite:test --ui",
"test": "pnpm test:unit"
},
"keywords": [],
"author": "toeverything",
"license": "MPL-2.0",
"dependencies": {
"@blocksuite/global": "workspace:*",
"@blocksuite/inline": "workspace:*",
"@blocksuite/sync": "workspace:*",
"@preact/signals-core": "^1.8.0",
"@types/flexsearch": "^0.7.6",
"@types/lodash.ismatch": "^4.4.9",
"flexsearch": "0.7.43",
"lib0": "^0.2.97",
"lodash.ismatch": "^4.4.0",
"lodash.merge": "^4.6.2",
"minimatch": "^10.0.1",
"nanoid": "^5.0.7",
"y-protocols": "^1.0.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.9",
"lit": "^3.2.0",
"yjs": "^13.6.18"
},
"peerDependencies": {
"yjs": "^13.6.15"
},
"exports": {
".": "./src/index.ts",
"./providers/*": "./src/providers/*.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js"
},
"./shim.d.ts": "./shim.d.ts"
}
},
"files": [
"src",
"dist",
"providers",
"!src/__tests__",
"!dist/__tests__"
]
}