-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
48
49
50
51
52
53
54
{
"name": "blockbench-rich-presence",
"version": "1.1.3",
"description": "Creating a Discord rich presence plugin for Blockbench",
"main": "main.js",
"dependencies": {
"bufferutil": "^4.0.1",
"discord-rpc": "^3.1.2",
"electron": "^8.2.4",
"encoding": "^0.1.13",
"js-beautify": "^1.11.0",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"release-it": "^13.6.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "webpack && js-beautify -r dist/discord-rpc.js && release-it patch --ci --no-git.requireCleanWorkingDir",
"build": "webpack",
"prettyprint": "js-beautify -r dist/discord-rpc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kas-tle/blockbench-rich-presence.git"
},
"keywords": [
"discord",
"rich",
"presence",
"rpc"
],
"author": "Kastle",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kas-tle/blockbench-rich-presence/issues"
},
"homepage": "https://github.com/Kas-tle/blockbench-rich-presence#readme",
"release-it": {
"git": {
"changelog": "git log --pretty=format:'* %s (%h)' [REV_RANGE]"
},
"github": {
"release": true,
"assets": [
"dist/discord-rpc.js"
],
"releaseName": "Blockbench RPC %s",
"tokenRef": "GITHUB_TOKEN"
}
}
}