mirror of
https://github.com/DerTyp7/react-teamspeak-remote-app-api.git
synced 2025-10-28 12:22:16 +01:00
69 lines
1.9 KiB
JSON
69 lines
1.9 KiB
JSON
{
|
|
"name": "react-teamspeak-remote-app-api",
|
|
"version": "2.0.0",
|
|
"description": "React hook/api for the TeamSpeak5/6 remote app feature",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"source": "src/index.ts",
|
|
"types": "dist/cjs/index.d.ts",
|
|
"scripts": {
|
|
"build": "npm run build:esm && npm run build:js",
|
|
"build:esm": "tsc --project tsconfig.build.json --outDir dist/esm --module esnext && npm run alias:esm",
|
|
"build:js": "tsc --project tsconfig.build.json --outDir dist/cjs --module commonjs && npm run alias:js",
|
|
"alias:esm": "tsc-alias --project tsconfig.build.json --outDir dist/esm",
|
|
"alias:js": "tsc-alias --project tsconfig.build.json --outDir dist/cjs"
|
|
},
|
|
"keywords": [
|
|
"TeamSpeak5",
|
|
"TS5",
|
|
"TeamSpeak",
|
|
"RemoteApp",
|
|
"API",
|
|
"Hook",
|
|
"React",
|
|
"ReactJS",
|
|
"Remote"
|
|
],
|
|
"author": "DerTyp7",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/DerTyp7/react-teamspeak-remote-app-api"
|
|
},
|
|
"license": "ISC",
|
|
"peerDependencies": {
|
|
"@types/react": "^18.0.0 || ^19.0.0",
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@types/react": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"@types/node": "^22.10.10",
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
"rollup-plugin-typescript-paths": "^1.5.0",
|
|
"ts-node": "^10.9.2",
|
|
"tslib": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.0.8",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
|
"@typescript-eslint/parser": "^8.21.0",
|
|
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
"eslint": "^9.18.0",
|
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
"eslint-plugin-react-refresh": "^0.4.18",
|
|
"tsc-alias": "^1.8.10",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|