Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloWestphalen committed Jun 2, 2020
0 parents commit ef012dc
Show file tree
Hide file tree
Showing 11 changed files with 2,480 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
announcements.json
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## 🆕 PSO2 Notifications

Show Windows alerts for Phantasy Star Online 2 Official NA site's news.

## Usage



## For developers

### Installation

With git and node installed, clone and enter the repo

```
git clone https://github.com/PabloWestphalen/pso2-notifications.git
cd pso2-notifications/
```

Install dependencies

```
npm install
```

### Available scripts

- `npm start` Launch script
- `npm run build` Build executable
Binary file added lib/SnoreToast.exe
Binary file not shown.
Loading

0 comments on commit ef012dc

Please sign in to comment.