-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conforming with new Replugged Update
- Loading branch information
1 parent
6177aa3
commit 5864c52
Showing
7 changed files
with
1,948 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# Reaction Noise! | ||
|
||
[![Install](https://img.shields.io/badge/-Install%20in%20Replugged-blue?style=for-the-badge&logo=none)](https://replugged.dev/install?identifier=SammCheese/Reaction-Noise&source=github) | ||
|
||
Do you want to torture yourself? Fantastic, You've come to the right place! | ||
|
||
This Plugin will play a customizable sound every time you (or anyone if you want to) add a Reaction. | ||
|
||
## Install | ||
|
||
Press the blue button | ||
|
||
OR | ||
|
||
1. Go to the "Release" Tab | ||
2. Download the .asar file | ||
3. Drag and Drop the .asar file into your plugin folder | ||
4. Restart Discord | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,35 @@ | ||
{ | ||
"name": "reaction-noise", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Play a sound when you react to a message", | ||
"engines": { | ||
"node": ">=14.0.0" | ||
}, | ||
"scripts": { | ||
"build": "tsx scripts/build.ts", | ||
"watch": "tsx scripts/build.ts --watch", | ||
"bundle": "tsx scripts/bundle.ts", | ||
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle", | ||
"build": "replugged build plugin", | ||
"watch": "replugged build plugin --watch", | ||
"bundle": "replugged bundle plugin", | ||
"check": "tsc --noEmit", | ||
"prettier:check": "prettier ./src ./scripts --check", | ||
"eslint:check": "eslint ./src ./scripts", | ||
"prettier:fix": "prettier ./src ./scripts --write", | ||
"eslint:fix": "eslint ./src ./scripts --fix", | ||
"prettier:check": "prettier ./src --check", | ||
"eslint:check": "eslint ./src", | ||
"prettier:fix": "prettier ./src --write", | ||
"eslint:fix": "eslint ./src --fix", | ||
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check", | ||
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "Unlicensed", | ||
"devDependencies": { | ||
"@electron/asar": "^3.2.1", | ||
"@types/node": "^18.11.2", | ||
"@typescript-eslint/eslint-plugin": "^5.40.1", | ||
"@typescript-eslint/parser": "^5.40.1", | ||
"esbuild": "^0.15.11", | ||
"eslint": "^8.25.0", | ||
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-react": "^7.31.10", | ||
"prettier": "^2.8.1", | ||
"replugged": "4.0.0-beta0.22", | ||
"tsx": "^3.10.3", | ||
"replugged": "4.0.0-beta0.25", | ||
"typescript": "^4.8.4" | ||
} | ||
} |
Oops, something went wrong.