-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@biblionexus-foundation/platform-editor",
"version": "0.6.7",
"description": "Scripture editor used in Platform. See https://platform.bible",
"license": "MIT",
"homepage": "https://github.com/BiblioNexus-Foundation/scripture-editors/tree/main/packages/platform#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",
"dev:test": "cross-env NODE_ENV=testing vite",
"files:smash": "cd scripts && python3 ./consolidate_files.py",
"prepublish": "cd ../.. && nx build platform"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"dependencies": {
"@biblionexus-foundation/scripture-utilities": "workspace:~",
"@lexical/react": "^0.21.0",
"@lexical/selection": "^0.21.0",
"@lexical/text": "^0.21.0",
"@lexical/utils": "^0.21.0",
"@lexical/yjs": "^0.21.0",
"@sillsdev/scripture": "^2.0.2",
"fast-equals": "^5.0.1",
"lexical": "^0.21.0",
"yjs": "^13.6.20"
},
"devDependencies": {
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.3",
"platform-bible-react": "file:./lib/platform-bible-react",
"platform-bible-utils": "file:./lib/platform-bible-utils",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shared": "link:../shared",
"shared-react": "link:../shared-react",
"tailwindcss": "3.4.16",
"tailwindcss-animate": "1.0.7"
},
"volta": {
"extends": "../../package.json"
}
}