-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "payload-plugin-lexical",
"version": "0.6.6",
"description": "Lexical plugin for Payload CMS",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png}\" dist/",
"build": "yarn copyfiles && yarn build:tsc",
"build:tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --ext js,jsx,ts,tsx .",
"lint:fix": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint --ext js,jsx,ts,tsx ."
},
"repository": {
"type": "git",
"url": "https://github.com/AlessioGr/payload-plugin-lexical"
},
"author": "Alessio Gravili",
"bugs": {
"url": "https://github.com/AlessioGr/payload-plugin-lexical/issues"
},
"homepage": "https://github.com/AlessioGr/payload-plugin-lexical",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"lexical",
"richtext",
"payload-plugin"
],
"peerDependencies": {
"payload": "^1.6.32",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@lexical/clipboard": "0.10.0",
"@lexical/code": "0.10.0",
"@lexical/file": "0.10.0",
"@lexical/hashtag": "0.10.0",
"@lexical/headless": "0.10.0",
"@lexical/html": "0.10.0",
"@lexical/link": "0.10.0",
"@lexical/list": "0.10.0",
"@lexical/mark": "0.10.0",
"@lexical/markdown": "0.10.0",
"@lexical/overflow": "0.10.0",
"@lexical/plain-text": "0.10.0",
"@lexical/react": "0.10.0",
"@lexical/rich-text": "0.10.0",
"@lexical/selection": "0.10.0",
"@lexical/table": "0.10.0",
"@lexical/utils": "0.10.0",
"classnames": "^2.3.2",
"katex": "0.16.8",
"lexical": "0.10.0",
"lodash": "4.17.21",
"openai": "^3.3.0",
"payload": "^1.10.2",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.10",
"react-i18next": "^12.2.2"
},
"devDependencies": {
"@faceless-ui/modal": "2.0.1",
"@types/eslint": "^8.40.2",
"@types/express": "^4.17.9",
"@types/jest": "^29.5.2",
"@types/react": "^18.2.14",
"@types/react-dom": "18.2.6",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"copyfiles": "2.4.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "2.8.8",
"typescript": "5.1.5"
}
}