@anhnv/lexical-playground 0.39.0 → 1.0.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.
Files changed (2) hide show
  1. package/dist/style.css +1 -1
  2. package/package.json +106 -106
package/package.json CHANGED
@@ -1,106 +1,106 @@
1
- {
2
- "name": "@anhnv/lexical-playground",
3
- "version": "0.39.0",
4
- "description": "Lexical editor playground with rich features and plugins",
5
- "keywords": [
6
- "lexical",
7
- "editor",
8
- "rich-text",
9
- "react",
10
- "wysiwyg",
11
- "text-editor",
12
- "contenteditable"
13
- ],
14
- "author": "anhnv",
15
- "license": "MIT",
16
- "type": "module",
17
- "main": "./dist/index.cjs",
18
- "module": "./dist/index.mjs",
19
- "types": "./dist/index.d.ts",
20
- "exports": {
21
- ".": {
22
- "import": {
23
- "types": "./dist/index.d.ts",
24
- "default": "./dist/index.mjs"
25
- },
26
- "require": {
27
- "types": "./dist/index.d.ts",
28
- "default": "./dist/index.cjs"
29
- }
30
- },
31
- "./style.css": "./dist/style.css"
32
- },
33
- "files": [
34
- "dist"
35
- ],
36
- "scripts": {
37
- "dev": "vite --host --port 3000",
38
- "build-dev": "vite build",
39
- "build-prod": "vite build --mode production",
40
- "build-vercel": "(cd ../../ && node ./scripts/build.js) && pnpm run build-dev",
41
- "build-lib": "cross-env BUILD_LIB=true vite build",
42
- "preview": "vite preview --port 4000 --host",
43
- "prepublishOnly": "pnpm run build-lib",
44
- "publish:public": "npm publish --access public",
45
- "version:patch": "npm version patch",
46
- "version:minor": "npm version minor",
47
- "version:major": "npm version major"
48
- },
49
- "peerDependencies": {
50
- "@lexical/clipboard": "^0.39.0",
51
- "@lexical/code": "^0.39.0",
52
- "@lexical/code-shiki": "^0.39.0",
53
- "@lexical/dragon": "^0.39.0",
54
- "@lexical/file": "^0.39.0",
55
- "@lexical/hashtag": "^0.39.0",
56
- "@lexical/history": "^0.39.0",
57
- "@lexical/html": "^0.39.0",
58
- "@lexical/link": "^0.39.0",
59
- "@lexical/list": "^0.39.0",
60
- "@lexical/mark": "^0.39.0",
61
- "@lexical/markdown": "^0.39.0",
62
- "@lexical/overflow": "^0.39.0",
63
- "@lexical/plain-text": "^0.39.0",
64
- "@lexical/react": "^0.39.0",
65
- "@lexical/rich-text": "^0.39.0",
66
- "@lexical/selection": "^0.39.0",
67
- "@lexical/table": "^0.39.0",
68
- "@lexical/text": "^0.39.0",
69
- "@lexical/utils": "^0.39.0",
70
- "@lexical/yjs": "^0.39.0",
71
- "lexical": "^0.39.0",
72
- "react": "^18.0.0 || ^19.0.0",
73
- "react-dom": "^18.0.0 || ^19.0.0"
74
- },
75
- "dependencies": {
76
- "@excalidraw/excalidraw": "^0.18.0",
77
- "@floating-ui/react": "^0.27.16",
78
- "date-fns": "^4.1.0",
79
- "katex": "^0.16.10",
80
- "lodash-es": "^4.17.21",
81
- "prettier": "^3.6.2",
82
- "react-day-picker": "^9.7.0",
83
- "react-error-boundary": "^6.0.0",
84
- "y-websocket": "^1.5.4",
85
- "yjs": ">=13.5.42"
86
- },
87
- "devDependencies": {
88
- "@babel/plugin-transform-flow-strip-types": "^7.24.7",
89
- "@babel/preset-react": "^7.24.7",
90
- "@prettier/sync": "^0.6.1",
91
- "@rollup/plugin-babel": "^6.0.4",
92
- "@rollup/plugin-commonjs": "^25.0.7",
93
- "@types/lodash": "^4.14.182",
94
- "@types/lodash-es": "^4.14.182",
95
- "@vitejs/plugin-react": "^5.0.2",
96
- "cross-env": "^10.1.0",
97
- "rollup-plugin-copy": "^3.5.0",
98
- "typescript": "^5.0.0",
99
- "vite": "^7.1.4",
100
- "vite-plugin-dts": "^3.9.0",
101
- "vite-plugin-static-copy": "^2.3.0"
102
- },
103
- "sideEffects": [
104
- "**/*.css"
105
- ]
106
- }
1
+ {
2
+ "name": "@anhnv/lexical-playground",
3
+ "version": "1.0.0",
4
+ "description": "Lexical editor playground with rich features and plugins",
5
+ "keywords": [
6
+ "lexical",
7
+ "editor",
8
+ "rich-text",
9
+ "react",
10
+ "wysiwyg",
11
+ "text-editor",
12
+ "contenteditable"
13
+ ],
14
+ "author": "anhnv",
15
+ "license": "MIT",
16
+ "type": "module",
17
+ "main": "./dist/index.cjs",
18
+ "module": "./dist/index.mjs",
19
+ "types": "./dist/index.d.ts",
20
+ "exports": {
21
+ ".": {
22
+ "import": {
23
+ "types": "./dist/index.d.ts",
24
+ "default": "./dist/index.mjs"
25
+ },
26
+ "require": {
27
+ "types": "./dist/index.d.ts",
28
+ "default": "./dist/index.cjs"
29
+ }
30
+ },
31
+ "./style.css": "./dist/style.css"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "scripts": {
37
+ "dev": "vite --host --port 3000",
38
+ "build-dev": "vite build",
39
+ "build-prod": "vite build --mode production",
40
+ "build-vercel": "(cd ../../ && node ./scripts/build.js) && pnpm run build-dev",
41
+ "build-lib": "cross-env BUILD_LIB=true vite build",
42
+ "preview": "vite preview --port 4000 --host",
43
+ "prepublishOnly": "pnpm run build-lib",
44
+ "publish:public": "npm publish --access public",
45
+ "version:patch": "npm version patch",
46
+ "version:minor": "npm version minor",
47
+ "version:major": "npm version major"
48
+ },
49
+ "peerDependencies": {
50
+ "react": "^18.0.0 || ^19.0.0",
51
+ "react-dom": "^18.0.0 || ^19.0.0"
52
+ },
53
+ "dependencies": {
54
+ "@excalidraw/excalidraw": "^0.18.0",
55
+ "@floating-ui/react": "^0.27.16",
56
+ "@lexical/clipboard": "^0.39.0",
57
+ "@lexical/code": "^0.39.0",
58
+ "@lexical/code-shiki": "^0.39.0",
59
+ "@lexical/dragon": "^0.39.0",
60
+ "@lexical/file": "^0.39.0",
61
+ "@lexical/hashtag": "^0.39.0",
62
+ "@lexical/history": "^0.39.0",
63
+ "@lexical/html": "^0.39.0",
64
+ "@lexical/link": "^0.39.0",
65
+ "@lexical/list": "^0.39.0",
66
+ "@lexical/mark": "^0.39.0",
67
+ "@lexical/markdown": "^0.39.0",
68
+ "@lexical/overflow": "^0.39.0",
69
+ "@lexical/plain-text": "^0.39.0",
70
+ "@lexical/react": "^0.39.0",
71
+ "@lexical/rich-text": "^0.39.0",
72
+ "@lexical/selection": "^0.39.0",
73
+ "@lexical/table": "^0.39.0",
74
+ "@lexical/text": "^0.39.0",
75
+ "@lexical/utils": "^0.39.0",
76
+ "@lexical/yjs": "^0.39.0",
77
+ "date-fns": "^4.1.0",
78
+ "katex": "^0.16.10",
79
+ "lexical": "^0.39.0",
80
+ "lodash-es": "^4.17.21",
81
+ "prettier": "^3.6.2",
82
+ "react-day-picker": "^9.7.0",
83
+ "react-error-boundary": "^6.0.0",
84
+ "y-websocket": "^1.5.4",
85
+ "yjs": ">=13.5.42"
86
+ },
87
+ "devDependencies": {
88
+ "@babel/plugin-transform-flow-strip-types": "^7.24.7",
89
+ "@babel/preset-react": "^7.24.7",
90
+ "@prettier/sync": "^0.6.1",
91
+ "@rollup/plugin-babel": "^6.0.4",
92
+ "@rollup/plugin-commonjs": "^25.0.7",
93
+ "@types/lodash": "^4.14.182",
94
+ "@types/lodash-es": "^4.14.182",
95
+ "@vitejs/plugin-react": "^5.0.2",
96
+ "cross-env": "^10.1.0",
97
+ "rollup-plugin-copy": "^3.5.0",
98
+ "typescript": "^5.0.0",
99
+ "vite": "^7.1.4",
100
+ "vite-plugin-dts": "^3.9.0",
101
+ "vite-plugin-static-copy": "^2.3.0"
102
+ },
103
+ "sideEffects": [
104
+ "**/*.css"
105
+ ]
106
+ }