change base paths

This commit is contained in:
Janis
2023-07-24 01:13:36 +02:00
parent 9ba7e76236
commit 0613ea653c
9 changed files with 1653 additions and 20 deletions

View File

@@ -2,9 +2,14 @@
"name": "react-ts5-remote-app-api",
"version": "1.0.0",
"description": "React hook/api for the TeamSpeak5 remote app feature",
"main": "app.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "tsc"
"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",
@@ -23,6 +28,15 @@
"@types/react": "^18.2.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"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"
}
}