-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.82 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
{
"name": "tebuto-wordpress-plugin",
"version": "2.3.1",
"description": "WordPress plugin for integrating Tebuto appointment booking",
"homepage": "https://tebuto.de/dokumentation/wordpress-plugin",
"author": "Artus Engineering GmbH",
"license": "GPL-2.0-or-later",
"scripts": {
"build": "./scripts/build.sh",
"version:bump": "./scripts/bump-version.sh",
"version:check": "./scripts/bump-version.sh --check",
"build:block": "npm --prefix tebuto-online-terminbuchung/block run build",
"format": "npm --prefix tebuto-online-terminbuchung/block run format",
"lint": "npm --prefix tebuto-online-terminbuchung/block run lint:js",
"lint:fix": "npm run format && npm run lint",
"prepare": "husky",
"start": "npm --prefix tebuto-online-terminbuchung/block run start",
"postinstall": "npm --prefix tebuto-online-terminbuchung/block ci",
"dev:setup": "./scripts/dev-setup.sh",
"dev:up": "docker compose up -d",
"dev:down": "docker compose down",
"dev:logs": "docker compose logs -f wordpress",
"dev:build": "./scripts/dev-sync.sh",
"dev:sync": "./scripts/dev-sync.sh --skip-build",
"dev": "concurrently -k -n block,sync \"npm run start\" \"chokidar 'tebuto-online-terminbuchung/**/*' -i '**/node_modules/**' -i '**/.svn/**' -i '**/assets-wporg/**' --debounce 500 -c 'npm run dev:sync'\""
},
"repository": {
"type": "git",
"url": "https://github.com/tebuto/wordpress-plugin.git"
},
"bugs": {
"url": "https://github.com/tebuto/wordpress-plugin/issues"
},
"keywords": [
"appointment",
"booking",
"calendar",
"wordpress",
"tebuto",
"gutenberg",
"terminbuchung"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.2"
}
}