kazi-aidah_blobob/package.json
Kazi Aidah Haque 09af5021f8 refactor: restructure css source files, update build tooling + mobile fix
Reorganize the project's CSS source files into a structured directory hierarchy to improve maintainability, grouping files by purpose such as base styles, layout, editor tools, markdown styling, and UI components. Additional changes include:
- update build.sh and build.ps1 to match the new file path structure
- add eslint and stylelint configs plus new lint scripts in package.json
- update README.md to showcase new vertical and bouncy folder animation assets
- remove outdated legacy CSS files, unused configs and the old issues.md file
- add new project configuration files including tsconfig.json and .stylelintrc.json
- update .gitignore to include node_modules and new documentation files
2026-05-25 00:44:33 +06:00

22 lines
912 B
JSON

{
"name": "blobob",
"version": "0.1.0",
"scripts": {
"build": "node -e \"const { execSync } = require('child_process'); const os = require('os'); if (os.platform() === 'win32') { execSync('powershell -ExecutionPolicy Bypass -File build.ps1', { stdio: 'inherit' }); } else { execSync('./build.sh', { stdio: 'inherit' }); }\"",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix"
},
"devDependencies": {
"@eslint/json": "^1.2.0",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3"
}
}