-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
61
62
{
"name": "rest-likes",
"description": "Like posts and comments using the REST API.",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/wearerequired/rest-likes.git"
},
"author": {
"name": "required",
"email": "[email protected]",
"url": "https://required.com"
},
"bugs": {
"url": "https://github.com/wearerequired/rest-likes/issues"
},
"homepage": "https://github.com/wearerequired/rest-likes#readme",
"dependencies": {
"@types/wordpress__blocks": "12.5.14",
"@wordpress/icons": "10.4.0"
},
"devDependencies": {
"@types/node": "22.1.0",
"@types/webpack-env": "1.18.5",
"@wearerequired/browserslist-config": "0.3.0",
"@wearerequired/eslint-config": "6.0.0",
"@wearerequired/postcss-config": "1.1.0",
"@wearerequired/stylelint-config": "6.0.0",
"@wordpress/scripts": "28.4.0",
"prettier": "npm:[email protected]",
"typescript": "5.5.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "wp-scripts build",
"start": "wp-scripts start",
"start:hot": "wp-scripts start --hot --allowed-hosts all",
"lint-js": "wp-scripts lint-js",
"lint-js:fix": "wp-scripts lint-js --fix",
"lint-css": "wp-scripts lint-style",
"lint-css:fix": "wp-scripts lint-style --fix"
},
"eslintConfig": {
"extends": [
"@wearerequired/eslint-config"
],
"rules": {
"@wordpress/no-global-event-listener": "off",
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"rest-likes"
]
}
]
}
},
"browserslist": [
"extends @wearerequired/browserslist-config/modern"
]
}