From 08dac92ead9014827f92456e3cce566ad654678a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 5 Feb 2026 22:31:20 +0000 Subject: Add .npmignore, LICENSE.txt, and update README.md - Created a .npmignore file to exclude unnecessary files and directories from npm packages. - Added LICENSE.txt to specify the licensing terms for the project. - Expanded README.md to include detailed plugin features, installation instructions, usage guidelines, and contribution information. - Updated package.json to reflect new repository URLs for issues and homepage. --- .npmignore | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .npmignore (limited to '.npmignore') diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..b20a6e4 --- /dev/null +++ b/.npmignore @@ -0,0 +1,39 @@ +# Dependencies and logs +node_modules/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Caches and temp +.cache/ +.tmp/ +*.tgz + +# VCS / CI / IDE +.git/ +.gitea/ +.github/ +.gitlab/ +.vscode/ +.idea/ +.DS_Store + +# Playground / tests / coverage +playground/ +tests/ +coverage/ +**/__tests__/ +**/*.spec.* +**/*.test.* + +# Source-only folders (built output lives in dist/) +admin/ +server/ + +# Misc project files +renovate.config.cjs +package-lock.json +.env +.env.* -- cgit v1.2.3