@tantainnovative/ndpr-toolkit 1.0.9 → 1.0.10

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.
Files changed (2) hide show
  1. package/README.md +20 -2
  2. package/package.json +22 -19
package/README.md CHANGED
@@ -173,6 +173,24 @@ The GitHub Pages deployment is configured in the following files:
173
173
 
174
174
  MIT License
175
175
 
176
- ## Developed by
176
+ ## Author
177
177
 
178
- Tanta Innovative - Positioning as a thought leader in regulatory tech solutions for Nigeria
178
+ **Abraham Esandayinze Tanta**
179
+
180
+ Senior Software Engineer with over a decade of experience in ethical hacking, software development, Linux and network administration. Based in Lagos, Nigeria.
181
+
182
+ - GitHub: [@mr-tanta](https://github.com/mr-tanta)
183
+ - Email: sir.tanta@gmail.com
184
+ - LinkedIn: [Abraham Tanta](https://linkedin.com/in/abraham-tanta)
185
+
186
+ ## Contributing
187
+
188
+ Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
189
+
190
+ ## Support
191
+
192
+ If you find this toolkit helpful, please consider:
193
+ - ⭐ Starring the repository
194
+ - 🐛 Reporting bugs and issues
195
+ - 💡 Suggesting new features
196
+ - 🤝 Contributing to the codebase
package/package.json CHANGED
@@ -1,24 +1,8 @@
1
1
  {
2
2
  "name": "@tantainnovative/ndpr-toolkit",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "private": false,
5
5
  "description": "Nigerian Data Protection Compliance Toolkit for implementing NDPR and DPA compliant features",
6
- "scripts": {
7
- "dev": "next dev --turbopack",
8
- "build": "next build",
9
- "build:lib": "tsup",
10
- "prepublishOnly": "pnpm build:lib",
11
- "start": "next start",
12
- "lint": "next lint",
13
- "test": "jest --passWithNoTests",
14
- "export": "next export",
15
- "build:static": "next build",
16
- "deploy": "next build && touch out/.nojekyll && gh-pages -d out",
17
- "release": "standard-version",
18
- "release:minor": "standard-version --release-as minor",
19
- "release:major": "standard-version --release-as major",
20
- "release:patch": "standard-version --release-as patch"
21
- },
22
6
  "keywords": [
23
7
  "ndpr",
24
8
  "dpa",
@@ -28,7 +12,11 @@
28
12
  "privacy",
29
13
  "gdpr"
30
14
  ],
31
- "author": "Tanta Innovative",
15
+ "author": {
16
+ "name": "Abraham Esandayinze Tanta",
17
+ "email": "sir.tanta@gmail.com",
18
+ "url": "https://github.com/mr-tanta"
19
+ },
32
20
  "license": "MIT",
33
21
  "repository": {
34
22
  "type": "git",
@@ -109,5 +97,20 @@
109
97
  "tsup": "^8.5.0",
110
98
  "tw-animate-css": "^1.4.0",
111
99
  "typescript": "^5.0.0"
100
+ },
101
+ "scripts": {
102
+ "dev": "next dev --turbopack",
103
+ "build": "next build",
104
+ "build:lib": "tsup",
105
+ "start": "next start",
106
+ "lint": "next lint",
107
+ "test": "jest --passWithNoTests",
108
+ "export": "next export",
109
+ "build:static": "next build",
110
+ "deploy": "next build && touch out/.nojekyll && gh-pages -d out",
111
+ "release": "standard-version",
112
+ "release:minor": "standard-version --release-as minor",
113
+ "release:major": "standard-version --release-as major",
114
+ "release:patch": "standard-version --release-as patch"
112
115
  }
113
- }
116
+ }