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

48
node_modules/resolve.exports/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"version": "1.1.1",
"name": "resolve.exports",
"repository": "lukeed/resolve.exports",
"description": "A tiny (813b), correct, general-purpose, and configurable \"exports\" resolver without file-system reliance",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "bundt",
"test": "uvu -r esm test"
},
"files": [
"*.d.ts",
"dist"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"keywords": [
"esm",
"exports",
"esmodules",
"fields",
"modules",
"resolution",
"resolve"
],
"devDependencies": {
"bundt": "1.1.2",
"esm": "3.2.25",
"uvu": "0.5.1"
}
}