-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.36 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"version": "0.1.1",
"keywords": [],
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"prebuild": "mkdir -p ./dist/src/images/ && cp -R ./admin/src/lexical/images/* ./dist/src/images/",
"prepublishOnly": "npm run build",
"format": "prettier admin server --write",
"format:check": "npm run format -- --check",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"prepare": "husky"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.17.6",
"@lexical/code": "^0.23.1",
"@lexical/file": "^0.23.1",
"@lexical/hashtag": "^0.23.1",
"@lexical/link": "^0.23.1",
"@lexical/list": "^0.23.1",
"@lexical/mark": "^0.23.1",
"@lexical/markdown": "^0.23.1",
"@lexical/overflow": "^0.23.1",
"@lexical/react": "^0.23.1",
"@lexical/rich-text": "^0.23.1",
"@lexical/selection": "^0.23.1",
"@lexical/table": "^0.23.1",
"@lexical/utils": "^0.23.1",
"@strapi/design-system": "^2.0.0-rc.16",
"@strapi/icons": "^2.0.0-rc.16",
"@strapi/pack-up": "^5.1.0",
"katex": "^0.16.21",
"lexical": "^0.23.1",
"lodash-es": "^4.17.21",
"react-error-boundary": "^5.0.0",
"react-intl": "^7.1.6",
"vite-plugin-prismjs": "^0.0.11"
},
"devDependencies": {
"@strapi/sdk-plugin": "^5.3.1",
"@strapi/strapi": "^5.10.2",
"@strapi/typescript-utils": "^5.10.2",
"@types/lodash-es": "^4.17.12",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.2",
"styled-components": "^6.1.15",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@strapi/strapi": "^5.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.2",
"styled-components": "^6.1.14"
},
"strapi": {
"kind": "plugin",
"name": "lexical",
"displayName": "Lexical WYSIWYG Editor",
"description": "Adds a custom field with the lexical WYSIWYG editor"
},
"name": "strapi-plugin-lexical",
"description": "Adds a custom field with the lexical WYSIWYG editor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hashbite/strapi-plugin-lexical.git"
},
"bugs": {
"url": "https://github.com/hashbite/strapi-plugin-lexical/issues"
},
"homepage": "https://github.com/hashbite/strapi-plugin-lexical#readme",
"author": "Benedikt Rötsch <[email protected]>",
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "prettier --write"
}
}