-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "EmoteReplacer",
"version": "2.2.0",
"description": "Check for known emote names and replace them with an embedded image of the emote. Also supports modifiers similar to BetterDiscord's emotes. Standard emotes: https://yentis.github.io/emotes/",
"author": "Yentis",
"authorId": "68834122860077056",
"license": "MIT",
"website": "https://github.com/Yentis/betterdiscord-emotereplacer",
"source": "https://raw.githubusercontent.com/Yentis/betterdiscord-emotereplacer/master/EmoteReplacer.plugin.js",
"main": "EmoteReplacer.plugin.js",
"scripts": {
"build": "npm run build-wasm && npm run build-js",
"build-js": "rollup --config",
"build-wasm": "cd rust && cargo clippy && wasm-pack build --target web && cd .. && npm run append-wasm-type",
"append-wasm-type": "(echo import { InitInput } from './gif_wasm'&& echo export default function wasm^(^): Promise^<InitInput^>) >> rust/pkg/gif_wasm_bg.wasm.d.ts",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yentis/betterdiscord-emotereplacer.git"
},
"bugs": {
"url": "https://github.com/Yentis/betterdiscord-emotereplacer/issues"
},
"homepage": "https://github.com/Yentis/betterdiscord-emotereplacer#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-wasm": "^6.1.2",
"@tsconfig/recommended": "^1.0.1",
"@types/betterdiscord": "github:zerthox/betterdiscord-types",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"electron": "^32.2.2",
"eslint": "^8.11.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-deprecation": "^1.4.1",
"prettier": "^2.8.7",
"rollup": "2.78.0",
"rollup-plugin-prettier": "^3.0.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"sass": "^1.49.9",
"typescript": "^4.6.2"
}
}