mirror of
https://github.com/LizardByte/awesome-sunshine.git
synced 2026-03-11 17:34:13 -05:00
Add a package.json with awesome-lint and a lint script, so the project has a reproducible linting dependency. Update the GitHub Actions workflow to set up Node.js, install dependencies (npm install --ignore-scripts) and run npm run lint instead of npx. Update .gitignore to ignore node_modules and package-lock.json.
22 lines
454 B
JSON
22 lines
454 B
JSON
{
|
|
"name": "awesome-sunshine",
|
|
"version": "0.0.0",
|
|
"description": "A Collection of Awesome Sunshine Scripts, Tools, Guides, and Companion Software",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "awesome-lint"
|
|
},
|
|
"devDependencies": {
|
|
"awesome-lint": "2.2.3"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/LizardByte/awesome-sunshine.git"
|
|
},
|
|
"keywords": [
|
|
"awesome",
|
|
"awesome-list",
|
|
"sunshine"
|
|
]
|
|
}
|