Files
react-teamspeak-remote-app-api/package.json
2023-07-24 01:15:53 +02:00

55 lines
1.2 KiB
JSON

{
"name": "react-ts5-remote-app-api",
"version": "1.0.0",
"description": "React hook/api for the TeamSpeak5 remote app feature",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --target esnext --outDir dist/cjs",
"prepare": "npm run build"
},
"keywords": [
"TeamSpeak5",
"TS5",
"TeamSpeak",
"RemoteApp",
"API",
"Hook",
"React",
"ReactJS",
"Remote"
],
"author": "DerTyp7",
"repository": {
"type": "git",
"url": "https://github.com/DerTyp7/react-ts5-remote-app-api"
},
"license": "ISC",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@types/react": "^18.2.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"tsconfig-paths": "^4.2.0"
}
}