forked from toeverything/blocksuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "@blocksuite/store",
"version": "0.6.0",
"description": "BlockSuite data store built for general purpose state management.",
"main": "src/index.ts",
"type": "module",
"repository": "toeverything/blocksuite",
"scripts": {
"build": "tsc",
"test:unit": "vitest --run",
"test:unit:coverage": "vitest run --coverage",
"test:unit:ui": "vitest --ui",
"test:e2e": "playwright test",
"test": "pnpm test:unit && pnpm test:e2e"
},
"keywords": [],
"author": "toeverything",
"license": "MPL-2.0",
"dependencies": {
"@blocksuite/global": "workspace:*",
"@blocksuite/virgo": "workspace:*",
"@types/flexsearch": "^0.7.3",
"buffer": "^6.0.3",
"flexsearch": "0.7.21",
"idb-keyval": "^6.2.0",
"ky": "^0.33.3",
"lib0": "^0.2.74",
"merge": "^2.1.1",
"minimatch": "^9.0.0",
"nanoid": "^4.0.1",
"y-protocols": "^1.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"async-call-rpc": "^6.3.1",
"lit": "^2.7.3",
"yjs": "^13.6.5"
},
"peerDependencies": {
"async-call-rpc": "^6",
"yjs": "^13"
},
"exports": {
"./src/*": "./src/*.ts",
".": "./src/index.ts",
"./providers/*": "./src/providers/*.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./src/*": "./dist/*.js",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js"
},
"./shim.d.ts": "./shim.d.ts",
"./providers/*": {
"types": "./dist/providers/*.d.ts",
"module": "./dist/providers/*.js",
"import": "./dist/providers/*.js"
}
}
}
}