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

32
node_modules/w3c-xmlserializer/package.json generated vendored Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "w3c-xmlserializer",
"description": "A per-spec XML serializer implementation",
"keywords": [
"dom",
"w3c",
"xml",
"xmlserializer"
],
"version": "2.0.0",
"license": "MIT",
"dependencies": {
"xml-name-validator": "^3.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^24.9.0",
"jsdom": "^15.2.1"
},
"repository": "jsdom/w3c-xmlserializer",
"files": [
"lib/"
],
"main": "lib/serialize.js",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"engines": {
"node": ">=10"
}
}