-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.69 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.69 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
{
"name": "amazed-blog-so-widgets",
"version": "1.0.6",
"description": "Amazed Blog SiteOrigin Widgets is a WordPress widgets collection curated for Amazed Blog.",
"main": "index.js",
"config": {
"css_in": "assets/css/_main.pcss",
"css_out": "assets/css/style.min.css",
"js_in": "assets/js/_main.js",
"js_out": "assets/js/main.min.js"
},
"scripts": {
"css": "tailwindcss -i $npm_package_config_css_in -o $npm_package_config_css_out --minify --postcss --watch",
"js": "esbuild $npm_package_config_js_in --outfile=$npm_package_config_js_out --bundle --minify --watch",
"watch": "browser-sync start --proxy \"https://amazed.ddev.site\" --host \"https://amazed.ddev.site\" --no-inject-changes --files= \"./widgets/**/*\"",
"build": "concurrently --kill-others-on-fail \"npm run css\" \"npm run js\" \"npm run watch\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/webdevsuperfast/amazed-blog-so-widgets.git"
},
"keywords": [
"siteorigin",
"widgets",
"so-widgets",
"tailwindcss"
],
"author": "Amazed Blog",
"license": "GPL-2.0",
"bugs": {
"url": "https://gitlab.com/webdevsuperfast/amazed-blog-so-widgets/issues"
},
"homepage": "https://gitlab.com/webdevsuperfast/amazed-blog-so-widgets#readme",
"devDependencies": {
"autoprefixer": "^10.4.2",
"browser-sync": "^2.27.7",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.14.23",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"postcss-nested-ancestors": "^3.0.0",
"resolve-url-loader": "^5.0.0",
"tailwindcss": "^3.0.23"
},
"dependencies": {
"swiper": "^8.0.6"
}
}