Initial commit: Developer Tools MVP with visual editor

- Complete React app with 7 developer tools
- JSON Tool with visual structured editor
- Serialize Tool with visual structured editor
- URL, Base64, CSV/JSON, Beautifier, Diff tools
- Responsive navigation with dropdown menu
- Dark/light mode toggle
- Mobile-responsive design with sticky header
- All tools working with copy/paste functionality
This commit is contained in:
dwindown
2025-08-02 09:31:26 +07:00
commit 7f2dd5260f
45657 changed files with 4730486 additions and 0 deletions

1
node_modules/tailwindcss/stubs/.npmignore generated vendored Normal file
View File

@@ -0,0 +1 @@
!*

6
node_modules/tailwindcss/stubs/.prettierrc.json generated vendored Normal file
View File

@@ -0,0 +1,6 @@
{
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}

1062
node_modules/tailwindcss/stubs/config.full.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

7
node_modules/tailwindcss/stubs/config.simple.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}

6
node_modules/tailwindcss/stubs/postcss.config.cjs generated vendored Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

6
node_modules/tailwindcss/stubs/postcss.config.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

2
node_modules/tailwindcss/stubs/tailwind.config.cjs generated vendored Normal file
View File

@@ -0,0 +1,2 @@
/** @type {import('tailwindcss').Config} */
module.exports = __CONFIG__

2
node_modules/tailwindcss/stubs/tailwind.config.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
/** @type {import('tailwindcss').Config} */
export default __CONFIG__

3
node_modules/tailwindcss/stubs/tailwind.config.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import type { Config } from 'tailwindcss'
export default __CONFIG__ satisfies Config