@examind/block-editor 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@examind/block-editor",
3
+ "version": "0.1.0",
4
+ "@comment version": [
5
+ "Don't specify package version here. It will be injected by publish workflow."
6
+ ],
7
+ "description": "",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.mjs",
10
+ "types": "dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "@comment scripts": [
15
+ "tsup doesn't type check, so we `tsc --noEmit` before building.",
16
+ "tsup uses esbuild which doesn't automatically read tsconfig.json path aliases,",
17
+ "so we add --tsconfig flag to enable path aliases like @/* in our source code."
18
+ ],
19
+ "keywords": [],
20
+ "author": "",
21
+ "license": "ISC",
22
+ "peerDependencies": {
23
+ "@lexical/clipboard": ">=0.30.0 <1.0.0",
24
+ "@lexical/headless": ">=0.30.0 <1.0.0",
25
+ "@lexical/html": ">=0.30.0 <1.0.0",
26
+ "@lexical/link": ">=0.30.0 <1.0.0",
27
+ "@lexical/list": ">=0.30.0 <1.0.0",
28
+ "@lexical/react": ">=0.30.0 <1.0.0",
29
+ "@lexical/rich-text": ">=0.30.0 <1.0.0",
30
+ "@lexical/selection": ">=0.30.0 <1.0.0",
31
+ "@lexical/table": ">=0.30.0 <1.0.0",
32
+ "@lexical/utils": ">=0.30.0 <1.0.0",
33
+ "lexical": ">=0.30.0 <1.0.0",
34
+ "nanoid": ">=3.0.0",
35
+ "react": ">=18.0.0",
36
+ "react-dom": ">=18.0.0"
37
+ },
38
+ "devDependencies": {
39
+ "@eslint/js": "^9.17.0",
40
+ "@lexical/clipboard": "0.30.0",
41
+ "@lexical/headless": "0.30.0",
42
+ "@lexical/html": "0.30.0",
43
+ "@lexical/link": "0.30.0",
44
+ "@lexical/list": "0.30.0",
45
+ "@lexical/react": "0.30.0",
46
+ "@lexical/rich-text": "0.30.0",
47
+ "@lexical/selection": "0.30.0",
48
+ "@lexical/table": "0.30.0",
49
+ "@lexical/utils": "0.30.0",
50
+ "@types/lodash-es": "4.17.12",
51
+ "@types/react": "18.3.18",
52
+ "@types/react-dom": "18.3.5",
53
+ "eslint": "^9.17.0",
54
+ "eslint-plugin-react-hooks": "^5.0.0",
55
+ "globals": "^15.14.0",
56
+ "lexical": "0.30.0",
57
+ "nanoid": "5.0.9",
58
+ "react": "18.3.1",
59
+ "react-dom": "18.3.1",
60
+ "tsup": "^8.3.5",
61
+ "typescript": "^5.7.2",
62
+ "typescript-eslint": "^8.18.2",
63
+ "@examind/block-types": "1.0.0"
64
+ },
65
+ "dependencies": {
66
+ "@dnd-kit/core": "6.3.1",
67
+ "@dnd-kit/modifiers": "9.0.0",
68
+ "@shoelace-style/shoelace": "2.19.1",
69
+ "lucide-react": "0.477.0",
70
+ "clsx": "2.1.1",
71
+ "lodash-es": "4.17.21"
72
+ },
73
+ "scripts": {
74
+ "build": "tsc --noEmit && tsup src/index.tsx --format cjs,esm --dts --external react --tsconfig tsconfig.json",
75
+ "dev": "tsup src/index.tsx --format cjs,esm --dts --watch --external react --tsconfig tsconfig.json",
76
+ "lint": "eslint src/**/*.ts*"
77
+ }
78
+ }