This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
{
"name": "@techstack/lexical",
"author": "The-Code-Monkey",
"packageManager": "yarn@4.7.0",
"description": "a wrapper for facebook/lexical for react",
"version": "1.8.48",
"scripts": {
"build": "tsc && cp ./src/index.scss ./dist/index.scss",
"lint": "tcm lint",
"test": "tcm test"
},
"license": "MIT",
"dependencies": {
"@lexical/code": "0.15.0",
"@lexical/html": "0.15.0",
"@lexical/link": "0.15.0",
"@lexical/list": "0.15.0",
"@lexical/react": "0.15.0",
"@lexical/selection": "0.15.0",
"@lexical/table": "0.15.0",
"@lexical/utils": "0.15.0",
"@techstack/react-feather": "workspace:*",
"lexical": "0.15.0",
"react": "19.0.0",
"styled-components": "6.1.16",
"typescript": "5.8.2"
},
"devDependencies": {
"@techstack/tcm-cli": "workspace:*",
"prop-types": "15.8.1",
"react-dom": "19.0.0",
"storybook": "8.6.7"
},
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/esm/index.js"
},
"./css": {
"import": "./dist/index.scss",
"require": "./dist/index.scss"
},
"./editor": {
"import": "./dist/esm/editor.js",
"require": "./dist/esm/editor.js"
},
"./plugins": {
"import": "./dist/esm/plugins/index.js",
"require": "./dist/esm/plugins/index.js"
}
},
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}