-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
executable file
·41 lines (41 loc) · 1.2 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
{
"name": "wp-telegram-post-notifier",
"version": "1.0.0",
"description": "A production-grade WordPress plugin that posts to Telegram channels/chats when content changes",
"main": "index.js",
"scripts": {
"start": "wp-scripts start",
"build": "wp-scripts build",
"lint:php": "phpcs --standard=phpcs.xml",
"lint:js": "eslint admin/src --ext .ts,.tsx,.js",
"test": "phpunit --colors=always",
"e2e": "playwright test",
"package": "node ./tools/package.js"
},
"keywords": [
"wordpress",
"plugin",
"telegram",
"notifications",
"automation"
],
"author": "VoxHash <contact@voxhash.dev>",
"license": "MIT",
"devDependencies": {
"@wordpress/scripts": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"playwright": "^1.40.0"
},
"dependencies": {
"@wordpress/api-fetch": "^6.0.0",
"@wordpress/components": "^25.0.0",
"@wordpress/data": "^9.0.0",
"@wordpress/element": "^5.0.0",
"@wordpress/i18n": "^4.0.0"
}
}