-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d277c2
commit 280f840
Showing
4 changed files
with
82 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"name": "@webberzone/top-10", | ||
"version": "3.4.0", | ||
"description": "Track daily and total visits on your blog posts. Display the count as well as popular and trending posts.", | ||
"author": "WebberZone", | ||
"license": "GPL-2.0-or-later", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "wp-scripts build --webpack-src-dir=includes/frontend/blocks/src/ --output-path=includes/frontend/blocks/build/", | ||
"build:query": "wp-scripts build --webpack-src-dir=includes/pro/blocks/src/query/ --output-path=includes/pro/blocks/build/query/", | ||
"build:featured-image": "wp-scripts build --webpack-src-dir=includes/pro/blocks/src/featured-image/ --output-path=includes/pro/blocks/build/featured-image/", | ||
"build:popular-posts-pro": "wp-scripts build --webpack-src-dir=includes/pro/blocks/src/popular-posts-pro/ --output-path=includes/pro/blocks/build/popular-posts-pro/", | ||
"build:pro": "npm run build:query && npm run build:featured-image && npm run build:popular-posts-pro", | ||
"build:all": "npm run build && npm run build:pro", | ||
"format": "wp-scripts format ./includes/pro/blocks/src/ ./includes/frontend/blocks/src/", | ||
"format:free": "wp-scripts format ./includes/frontend/blocks/src/", | ||
"format:pro": "wp-scripts format ./includes/pro/blocks/src/", | ||
"lint:css": "wp-scripts lint-style ./includes/pro/blocks/src/ ./includes/frontend/blocks/src/", | ||
"lint:js": "wp-scripts lint-js ./includes/pro/blocks/src/ ./includes/frontend/blocks/src/", | ||
"packages-update": "wp-scripts packages-update", | ||
"start": "wp-scripts start --webpack-src-dir=includes/frontend/blocks/src/ --output-path=includes/frontend/blocks/build/", | ||
"start:featured-image": "wp-scripts start --webpack-src-dir=includes/pro/blocks/src/featured-image/ --output-path=includes/pro/blocks/build/featured-image/", | ||
"start:popular-posts-pro": "wp-scripts start --webpack-src-dir=includes/pro/blocks/src/popular-posts-pro/ --output-path=includes/pro/blocks/build/popular-posts-pro/", | ||
"start:query": "wp-scripts start --webpack-src-dir=includes/pro/blocks/src/query/ --output-path=includes/pro/blocks/build/query/", | ||
"start:pro": "npm run start:query & npm run start:featured-image & npm run start:popular-posts-pro", | ||
"start:all": "npm run start & npm run start:pro", | ||
"zip": "wp-scripts plugin-zip" | ||
}, | ||
"files": [ | ||
"css", | ||
"freemius", | ||
"includes", | ||
"languages", | ||
"README.md", | ||
"composer.json", | ||
"top-10.php", | ||
"index.php", | ||
"uninstaller.php", | ||
"changelog.txt", | ||
"readme.txt", | ||
"default.png", | ||
"default2.png", | ||
"wpml-config.xml" | ||
], | ||
"devDependencies": { | ||
"@wordpress/prettier-config": "^4.5.0", | ||
"@wordpress/scripts": "^27" | ||
}, | ||
"dependencies": { | ||
"@wordpress/icons": "^10.5.0", | ||
"clsx": "^2.1.1", | ||
"uuid": "^10.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters