Skip to content

Commit

Permalink
Create scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Saltssaumure committed Jul 3, 2024
1 parent b176758 commit d896a8a
Show file tree
Hide file tree
Showing 13 changed files with 990 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/node_modules

# Script output
/dist
/lib
/theme/**/LICENSE

todo.md
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/node_modules
/dist
/lib

pnpm-lock.yaml
README.md
LICENSE
7 changes: 7 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"useTabs": true,
"singleQuote": false,
"printWidth": 140,
"tabWidth": 2,
"trailingComma": "none"
}
29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "pios-browser-theme",
"version": "0.1.0",
"description": "SUPERHOT piOS inspired themes for your browser.",
"type": "module",
"scripts": {
"build:self": "npx tsc",
"dev:self": "npx tsc -w",
"build:css": "node ./lib/build.js",
"dev:css": "node ./lib/watch.js",
"zip": "node ./lib/zip.js",
"lint": "prettier ./ --check",
"lint:fix": "prettier ./ --write --log-level warn"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/node": "^20.14.9",
"prettier": "^3.3.2"
},
"dependencies": {
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"sass": "^1.77.6",
"typescript": "^5.5.2"
}
}
Loading

0 comments on commit d896a8a

Please sign in to comment.