-
-
Notifications
You must be signed in to change notification settings - Fork 415
/
package.json
71 lines (71 loc) · 1.74 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
66
67
68
69
70
71
{
"name": "@blocksuite/store",
"version": "0.17.32",
"description": "BlockSuite data store built for general purpose state management.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/toeverything/blocksuite.git",
"directory": "packages/framework/store"
},
"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": "yarn test:unit"
},
"sideEffects": false,
"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",
"file-type": "^19.5.0",
"flexsearch": "0.7.43",
"lib0": "^0.2.97",
"lodash.clonedeep": "^4.5.0",
"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.clonedeep": "^4.5.9",
"@types/lodash.merge": "^4.6.9",
"lit": "^3.2.0",
"yjs": "^13.6.18"
},
"peerDependencies": {
"yjs": "^13.6.18"
},
"exports": {
".": "./src/index.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",
"!src/__tests__",
"!dist/__tests__"
]
}