-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.65 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
{
"name": "google-calendar-events",
"title": "Simple Calendar",
"description": "Add Google Calendar events to your WordPress site.",
"version": "3.4.7",
"license": "GPLv2+",
"homepage": "https://simplecalendar.io",
"repository": {
"type": "git",
"url": "https://github.com/Xtendify/Simple-Calendar"
},
"devDependencies": {
"@prettier/plugin-php": "0.22.2",
"autoprefixer": "10.4.20",
"bower": "1.8.14",
"concurrently": "9.1.0",
"esbuild": "0.24.0",
"esbuild-sass-plugin": "^3.3.1",
"grunt": "1.6.1",
"grunt-checktextdomain": "1.0.1",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-compress": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"load-grunt-tasks": "5.1.0",
"postcss-cli": "11.0.0",
"prettier": "3.3.3",
"tailwindcss": "3.4.15"
},
"scripts": {
"setup": "yarn && composer install && composer dump-autoload -o",
"postsetup": "yarn build:tailwind && yarn build:esbuild",
"dev": "concurrently --kill-others \"yarn dev:tailwind\" \"yarn dev:esbuild\"",
"dev:tailwind": "yarn build:tailwind --watch",
"dev:esbuild": "yarn build:esbuild --watch",
"prebuild": "yarn setup",
"build": "yarn build:grunt",
"build:tailwind": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/generated/tailwind-output.css",
"build:esbuild": "node .bin/esbuild.mjs",
"build:grunt": "grunt build && bash .bin/update-version.sh && grunt compress:main",
"lint": "prettier --check . --plugin=@prettier/plugin-php",
"lint:fix": "prettier --write . --plugin=@prettier/plugin-php"
},
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"dayjs": "1.11.13"
}
}