-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.45 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
{
"name": "@wordpress/sync",
"version": "1.44.0",
"description": "Sync Data.",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"sync"
],
"homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/packages/sync/README.md",
"repository": {
"type": "git",
"url": "https://github.com/WordPress/gutenberg.git",
"directory": "packages/sync"
},
"bugs": {
"url": "https://github.com/WordPress/gutenberg/issues"
},
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"files": [
"src",
"build",
"build-module",
"build-types",
"*.md"
],
"main": "build/index.cjs",
"module": "build-module/index.mjs",
"exports": {
".": {
"types": "./build-types/index.d.ts",
"import": "./build-module/index.mjs",
"require": "./build/index.cjs"
},
"./package.json": "./package.json"
},
"react-native": "src/index",
"wpScript": true,
"types": "build-types",
"sideEffects": false,
"dependencies": {
"@wordpress/api-fetch": "file:../api-fetch",
"@wordpress/dom": "file:../dom",
"@wordpress/hooks": "file:../hooks",
"@wordpress/private-apis": "file:../private-apis",
"@wordpress/undo-manager": "file:../undo-manager",
"diff": "^8.0.3",
"fast-deep-equal": "^3.1.3",
"lib0": "0.2.99",
"y-protocols": "^1.0.7",
"yjs": "13.6.29"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/node": "^20.17.10"
},
"publishConfig": {
"access": "public"
}
}