namespace-guard 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -493,10 +493,17 @@ import type {
|
|
|
493
493
|
} from "namespace-guard";
|
|
494
494
|
```
|
|
495
495
|
|
|
496
|
+
## Support
|
|
497
|
+
|
|
498
|
+
If you find this useful, consider supporting the project:
|
|
499
|
+
|
|
500
|
+
- [GitHub Sponsors](https://github.com/sponsors/paultendo)
|
|
501
|
+
- [Buy me a coffee](https://buymeacoffee.com/paultendo)
|
|
502
|
+
|
|
496
503
|
## Contributing
|
|
497
504
|
|
|
498
505
|
Contributions welcome! Please open an issue first to discuss what you'd like to change.
|
|
499
506
|
|
|
500
507
|
## License
|
|
501
508
|
|
|
502
|
-
MIT © [Paul Wood FRSA](https://github.com/paultendo)
|
|
509
|
+
MIT © [Paul Wood FRSA (@paultendo)](https://github.com/paultendo)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "namespace-guard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Check slug/handle uniqueness across multiple database tables with reserved name protection",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -67,10 +67,14 @@
|
|
|
67
67
|
],
|
|
68
68
|
"author": "Paul Wood FRSA",
|
|
69
69
|
"license": "MIT",
|
|
70
|
+
"homepage": "https://paultendo.github.io/namespace-guard/",
|
|
70
71
|
"repository": {
|
|
71
72
|
"type": "git",
|
|
72
73
|
"url": "git+https://github.com/paultendo/namespace-guard.git"
|
|
73
74
|
},
|
|
75
|
+
"bugs": {
|
|
76
|
+
"url": "https://github.com/paultendo/namespace-guard/issues"
|
|
77
|
+
},
|
|
74
78
|
"devDependencies": {
|
|
75
79
|
"@types/node": "^25.3.0",
|
|
76
80
|
"tsup": "^8.0.0",
|