forked from eten-tech-foundation/scripture-editors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.27 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
{
"name": "shared-react",
"version": "0.0.1",
"private": true,
"license": "MIT",
"keywords": [
"react",
"lexical",
"editor",
"rich-text"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"!src/**/react-test.utils.tsx",
"!src/**/*.test.ts",
"!src/**/*.data.ts"
],
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"dependencies": {
"@eten-tech-foundation/scripture-utilities": "workspace:~",
"@floating-ui/dom": "^1.7.6",
"@lexical/react": "^0.43.0",
"@lexical/utils": "^0.43.0",
"fast-equals": "^5.4.0",
"lexical": "^0.43.0",
"quill-delta": "^5.1.0"
},
"devDependencies": {
"shared": "workspace:~",
"test-data": "workspace:~"
},
"repository": {
"type": "git",
"url": "https://github.com/eten-tech-foundation/scripture-editors",
"directory": "libs/shared-react"
},
"volta": {
"extends": "../../package.json"
}
}