-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
23 lines (23 loc) · 871 Bytes
/
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
{
"name": "ts3-qs4sd",
"version": "1.2.0",
"description": "A TeamSpeak 3 client plugin that integrates TeamSpeak 3 into Steam Deck's quick access menu.",
"scripts": {
"test": "node --test --experimental-test-module-mocks",
"build": "rm -rf ./dist && rollup -c",
"build:zip": "rm -rf plugin.zip && cd decky/plugins && zip -r ../../plugin.zip ts3-qs4sd",
"plugin:reload": "./plugin.reload.mjs",
"plugin:publish": "./plugin.publish.mjs",
"docker:build": "docker build -f ./backend/Dockerfile -t ts3-qs4sd .",
"docker:run": "rm -rf ./backend/out && docker run -i -u 1000:1000 -v ./backend:/backend --rm ts3-qs4sd",
"clean": "rm -rf ./dist ./backend/out ./backend/vnd"
},
"dependencies": {
"decky-frontend-lib": "3.x",
"react": "16.x"
},
"devDependencies": {
"react-test-renderer": "16.x",
"rollup": "3.x"
}
}