- 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.
40 lines
462 B
Plaintext
40 lines
462 B
Plaintext
# 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.*
|