-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "tpdiscord",
"version": "5.0.0-alpha-6",
"description": "Touch Portal Plugin for Discord using RPC",
"main": "src/index.js",
"bin": {
"tpdiscord": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"pkg": "pkg .",
"pkg-win": "pkg --targets node16-win-x64 .",
"pkg-mac": "pkg --targets node16-macos-x64 .",
"pkg-linux": "pkg --targets node16-linux-x64 .",
"pkg-all": "node scripts/build.js"
},
"author": "Jameson Allen aka Spdermn02",
"license": "ISC",
"pkg": {
"scripts": [
"src/**/*.js",
"src/*.js"
],
"assets": [
"discord-rpc/**/*"
]
},
"dependencies": {
"@types/markdown-it": "^14.1.2",
"discord-rpc": "file:./discord-rpc",
"find-process": "^1.4.7",
"out-url": "^1.2.2",
"touchportal-api": "^3.3.0"
},
"devDependencies": {
"adm-zip": "^0.5.14",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"typescript": "^4.7.4",
"pkg": "^5.8.1"
}
}