mirror of
https://github.com/bgreenwell/lstr.git
synced 2026-01-30 11:33:48 +01:00
- 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
19 lines
389 B
JSON
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"
|
|
}
|
|
} |