mirror of
https://github.com/DumbWareio/DumbPad.git
synced 2026-02-20 00:26:48 +08:00
* Add split editor & preview mode with a 3-way toggle * Update default preview mode settings to a radio to match the 3 way toggle * add resize cursor to split view handle * remove redundant cursor style * add mobile touch support with vertical splitting for split preview mode
29 lines
676 B
JSON
29 lines
676 B
JSON
{
|
|
"name": "dumbpad",
|
|
"version": "1.0.4",
|
|
"description": "A simple notepad application",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"generate-icons": "node scripts/generate-png.js"
|
|
},
|
|
"dependencies": {
|
|
"@highlightjs/cdn-assets": "^11.11.1",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.1",
|
|
"express": "^5.1.0",
|
|
"fuse.js": "^7.1.0",
|
|
"marked": "^15.0.11",
|
|
"marked-alert": "^2.1.2",
|
|
"marked-extended-tables": "^2.0.1",
|
|
"marked-highlight": "^2.2.2",
|
|
"ws": "^8.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.3",
|
|
"sharp": "^0.33.2"
|
|
}
|
|
}
|