-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.59 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
{
"name": "click-2-share",
"version": "1.3.2",
"description": "Gutenberg Block Plugin to display a shareable post on Meta Threads, X (formely Twitter) or Reddit.",
"author": "Sina Eetezadi",
"license": "GPL-2.0-or-later",
"keywords": [
"gutenberg",
"wordpress",
"plugin",
"meta-threads",
"twitter",
"reddit"
],
"homepage": "/~https://github.com/Eetezadi/wordpress-click2share",
"repository": {
"type": "git",
"url": "git+/~https://github.com/Eetezadi/wordpress-click2share"
},
"bugs": {
"url": "/~https://github.com/Eetezadi/wordpress-click2share/issues"
},
"main": "build/index.js",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@wordpress/api-fetch": "^7.6.0",
"@wordpress/block-editor": "^14.1.0",
"@wordpress/components": "^28.6.0",
"@wordpress/data": "^10.6.0",
"@wordpress/scripts": "^28.6.0"
},
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"test:unit:verbose": "wp-scripts test-unit-js --verbose"
}
}