#35 Updated package.json and readme

This commit is contained in:
Serraniel 2020-08-29 17:27:16 +02:00
parent dcc9ded0af
commit 078479fa55
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
3 changed files with 65 additions and 10746 deletions

View file

@ -1,2 +1,36 @@
# EnhancedAniwatch # Aniwatch Plus
Enhancment extension for https://aniwatch.me/ *Aniwatch Plus* is an unofficial extension which provides several UI improvments for https://aniwatch.me.
## Features
* adds quick search to website
* cleaner style for lists
* better presentation of anime requests
## Browser Support
We currently support the following browsers in current versions:
* Google Chrome
* Mozilla Firefox
* Opera
* Microsoft Edge
### Installation
This extension isn´t available in browser stores yet. Please download from [releases](https://github.com/Serraniel/AniwatchPlus/releases) for your browser and check how to manually install an extension into your browser. If you want to install the extension in Microsoft Edge, please use the Chrome release version.
## Development
### Tools
This project requires you to install [NPM](https://nodejs.org/en/download/) and [gulp](https://www.npmjs.com/package/gulp).
### Build
```sh
# mandatory
npm install -d
# build release version into './dist'
npm run dist:prod
# build dev version into './div' and start the watcher
npm run watch
# clean build and dist directories
npm run clean
```

10752
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,10 +1,11 @@
{ {
"name": "enhancedaniwatch", "name": "aniwatch-plus",
"version": "1.0.0", "version": "0.1.0.0-beta",
"description": "Ehanced Aniwatch is a browser extension for https://aniwatch.me/", "description": "Aniwatch Plus is a browser extension for https://aniwatch.me/",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"clean": "gulp clean",
"build": "gulp build", "build": "gulp build",
"build:prod": "cross-env NODE_ENV=production gulp build", "build:prod": "cross-env NODE_ENV=production gulp build",
"dist": "gulp dist", "dist": "gulp dist",
@ -13,14 +14,20 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/Serraniel/EnhancedAniwatch.git" "url": "git+https://github.com/Serraniel/AniwatchPlus.git"
}, },
"author": "Serraniel", "author": {
"name": "Serraniel",
"email": "mail@serraniel.dev",
"url": "https://serraniel.dev"
},
"contributors": [],
"license": "MPL-2.0", "license": "MPL-2.0",
"bugs": { "bugs": {
"url": "https://github.com/Serraniel/EnhancedAniwatch/issues" "url": "https://github.com/Serraniel/AniwatchPlus/issues",
"email": "mail@serraniel.dev"
}, },
"homepage": "https://github.com/Serraniel/EnhancedAniwatch#readme", "homepage": "https://github.com/Serraniel/AniwatchPlus#readme",
"dependencies": { "dependencies": {
"regenerator-runtime": "^0.13.7" "regenerator-runtime": "^0.13.7"
}, },