- Vanilla JS frontend with dark theme - Dashboard with sidebar (libraries tree, tags), document grid, search - Document viewer with markdown rendering and metadata panel - Document editor with split write/preview and formatting toolbar - Login screen with token authentication - All styled according to UI/UX specs (dark theme, accent #00d4aa) - API client for all endpoints - Responsive design
28 lines
687 B
JSON
28 lines
687 B
JSON
{
|
|
"name": "simplenote-web",
|
|
"version": "0.1.0",
|
|
"description": "SimpleNote Web - Document management system with nested libraries and markdown support",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "node --watch src/index.js",
|
|
"init": "node scripts/init-data.js"
|
|
},
|
|
"keywords": ["documents", "markdown", "api"],
|
|
"author": "OpenClaw Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"gray-matter": "^4.0.3",
|
|
"js-yaml": "^4.1.0",
|
|
"marked": "^11.1.0",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.4"
|
|
}
|
|
}
|