-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "@biblionexus-foundation/scribe-editor",
"version": "0.1.2",
"description": "Scripture editor used in Scribe",
"license": "MIT",
"homepage": "https://github.com/BiblioNexus-Foundation/scripture-editors/tree/main/packages/scribe#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BiblioNexus-Foundation/scripture-editors.git"
},
"bugs": {
"url": "https://github.com/BiblioNexus-Foundation/scripture-editors/issues"
},
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"!dist/package.json",
"src/index.ts",
"src/editor"
],
"scripts": {
"dev": "vite",
"prepublish": "cd ../.. && nx build scribe"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"dependencies": {
"@biblionexus-foundation/scripture-utilities": "workspace:~",
"@floating-ui/dom": "^1.6.13",
"@lexical/mark": "^0.27.1",
"@lexical/react": "^0.27.1",
"@lexical/selection": "^0.27.1",
"@lexical/utils": "^0.27.1",
"autoprefixer": "^10.4.20",
"fast-equals": "^5.2.2",
"lexical": "^0.27.1"
},
"devDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"postcss": "^8.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shared": "link:../shared",
"shared-react": "link:../shared-react",
"sj-usfm-grammar": "^3.0.0",
"tailwindcss": "^3.4.17"
},
"volta": {
"extends": "../../package.json"
}
}