-
-
Notifications
You must be signed in to change notification settings - Fork 551
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.85 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.85 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@blocksuite/blocks",
"version": "0.16.0",
"description": "Default BlockSuite editable blocks.",
"type": "module",
"repository": "toeverything/blocksuite",
"scripts": {
"build": "tsc",
"test:unit": "nx vite:test --run",
"test:unit:coverage": "nx vite:test --run --coverage",
"test:e2e": "playwright test",
"test": "pnpm test:unit && pnpm test:e2e"
},
"keywords": [],
"author": "toeverything",
"license": "MPL-2.0",
"dependencies": {
"@blocksuite/affine-components": "workspace:*",
"@blocksuite/affine-model": "workspace:*",
"@blocksuite/affine-shared": "workspace:*",
"@blocksuite/affine-block-paragraph": "workspace:*",
"@blocksuite/block-std": "workspace:*",
"@blocksuite/global": "workspace:*",
"@blocksuite/icons": "^2.1.62",
"@blocksuite/inline": "workspace:*",
"@blocksuite/store": "workspace:*",
"@dotlottie/player-component": "^2.7.12",
"@floating-ui/dom": "^1.6.8",
"@lit-labs/preact-signals": "^1.0.2",
"@lit/context": "^1.1.2",
"@toeverything/theme": "^1.0.2",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/sortablejs": "^1.15.8",
"collapse-white-space": "^2.1.0",
"date-fns": "^3.6.0",
"dompurify": "^3.1.6",
"fflate": "^0.8.2",
"figma-squircle": "^0.3.1",
"file-type": "^19.3.0",
"fractional-indexing": "^3.2.0",
"html2canvas": "^1.4.1",
"lit": "^3.1.4",
"mdast-util-gfm-autolink-literal": "^2.0.0",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-table": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"merge": "^2.1.1",
"micromark-extension-gfm-autolink-literal": "^2.1.0",
"micromark-extension-gfm-strikethrough": "^2.1.0",
"micromark-extension-gfm-table": "^2.1.0",
"micromark-extension-gfm-task-list-item": "^2.1.0",
"micromark-util-combine-extensions": "^2.0.0",
"minimatch": "^10.0.1",
"nanoid": "^5.0.7",
"pdf-lib": "^1.17.1",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"shiki": "^1.12.0",
"sortablejs": "^1.15.2",
"unified": "^11.0.5",
"zod": "^3.23.8"
},
"exports": {
"./dist/*": "./dist/*",
".": "./src/index.ts",
"./schemas": "./src/schemas.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./dist/*": "./dist/*",
"./src/*": "./dist/*.js",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schemas": {
"types": "./dist/schemas.d.ts",
"import": "./dist/schemas.js"
}
}
},
"files": [
"src",
"dist",
"!src/__tests__",
"!dist/__tests__",
"schemas.d.ts",
"schemas.js"
],
"devDependencies": {
"@types/dompurify": "^3.0.5"
}
}