Files
bgreenwell 178c99c6e7 Add comprehensive examples directory for testing lstr functionality
- Create examples/sample-directory/ with complex nested structure
- Include various file types for testing icons (.rs, .js, .md, .json, .yaml, .png, etc.)
- Add hidden files and directories for testing -a flag
- Include gitignored content (build/, node_modules/, temp/) for testing -g flag
- Provide comprehensive README with usage examples
- Exclude examples from workspace to avoid build conflicts
2025-09-06 09:57:29 -04:00

19 lines
389 B
JSON

{
"name": "sample-app",
"version": "1.0.0",
"description": "Sample application for testing lstr",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"build": "webpack --mode=production"
},
"dependencies": {
"express": "^4.18.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"jest": "^29.0.0",
"webpack": "^5.70.0"
}
}