tiktok-live-api 1.2.17 → 1.2.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/demo.mjs +41 -13
- package/package.json +1 -1
package/bin/demo.mjs
CHANGED
|
@@ -275,8 +275,7 @@ function runScaffold(choice, targetDir, pm) {
|
|
|
275
275
|
} else if (isNext) {
|
|
276
276
|
execSync(npxCmd + ' create-next-app@latest "' + targetDir + '" --js --eslint --tailwind --app --src-dir --import-alias "@/*" --use-' + pm, { stdio: 'inherit' });
|
|
277
277
|
} else if (isVite) {
|
|
278
|
-
|
|
279
|
-
execSync(createCmd + ' "' + targetDir + '" -- --template react', { stdio: 'inherit' });
|
|
278
|
+
execSync(npxCmd + ' create-vite@latest "' + targetDir + '" --no-interactive --template react', { stdio: 'inherit' });
|
|
280
279
|
}
|
|
281
280
|
|
|
282
281
|
if (isNode) {
|
|
@@ -493,12 +492,13 @@ function runScaffold(choice, targetDir, pm) {
|
|
|
493
492
|
"}",
|
|
494
493
|
].join('\n') + '\n');
|
|
495
494
|
} else if (isVite) {
|
|
496
|
-
const
|
|
495
|
+
const srcDir = path.join(fullPath, 'src');
|
|
496
|
+
const compDir = path.join(srcDir, 'components');
|
|
497
497
|
if (!fs.existsSync(compDir)) fs.mkdirSync(compDir, { recursive: true });
|
|
498
498
|
fs.writeFileSync(path.join(compDir, 'TikTokLive.jsx'), REACT_TEMPLATE);
|
|
499
499
|
|
|
500
|
-
// Write App.jsx
|
|
501
|
-
|
|
500
|
+
// Write App.jsx
|
|
501
|
+
fs.writeFileSync(path.join(srcDir, 'App.jsx'), [
|
|
502
502
|
"import TikTokLive from './components/TikTokLive';",
|
|
503
503
|
"",
|
|
504
504
|
"export default function App() {",
|
|
@@ -508,11 +508,42 @@ function runScaffold(choice, targetDir, pm) {
|
|
|
508
508
|
" </main>",
|
|
509
509
|
" );",
|
|
510
510
|
"}",
|
|
511
|
-
].join('\n') + '\n';
|
|
512
|
-
|
|
513
|
-
//
|
|
514
|
-
|
|
515
|
-
|
|
511
|
+
].join('\n') + '\n');
|
|
512
|
+
|
|
513
|
+
// Write main.jsx entry point
|
|
514
|
+
fs.writeFileSync(path.join(srcDir, 'main.jsx'), [
|
|
515
|
+
"import React from 'react';",
|
|
516
|
+
"import ReactDOM from 'react-dom/client';",
|
|
517
|
+
"import App from './App';",
|
|
518
|
+
"",
|
|
519
|
+
"ReactDOM.createRoot(document.getElementById('root')).render(",
|
|
520
|
+
" <React.StrictMode>",
|
|
521
|
+
" <App />",
|
|
522
|
+
" </React.StrictMode>",
|
|
523
|
+
");",
|
|
524
|
+
].join('\n') + '\n');
|
|
525
|
+
|
|
526
|
+
// Clean up TypeScript files that conflict with our JSX files
|
|
527
|
+
for (const f of ['App.tsx', 'App.ts', 'main.tsx', 'main.ts']) {
|
|
528
|
+
const fp = path.join(srcDir, f);
|
|
529
|
+
if (fs.existsSync(fp)) fs.unlinkSync(fp);
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
// Update index.html to reference main.jsx instead of main.ts/main.tsx
|
|
533
|
+
const indexHtml = path.join(fullPath, 'index.html');
|
|
534
|
+
if (fs.existsSync(indexHtml)) {
|
|
535
|
+
let html = fs.readFileSync(indexHtml, 'utf8');
|
|
536
|
+
html = html.replace(/src=\/src\/main\.tsx?/g, 'src=/src/main.jsx');
|
|
537
|
+
html = html.replace(/src="\/src\/main\.tsx?"/g, 'src="/src/main.jsx"');
|
|
538
|
+
fs.writeFileSync(indexHtml, html);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// Install dependencies for Vite (create-vite --no-interactive doesn't auto-install)
|
|
542
|
+
if (isVite) {
|
|
543
|
+
const installBase = pm === 'npm' ? 'npm install' : pm === 'yarn' ? 'yarn' : pm === 'pnpm' ? 'pnpm install' : 'bun install';
|
|
544
|
+
console.log("\n " + B + "📦 Installing dependencies..." + R + "\n");
|
|
545
|
+
execSync(installBase, { cwd: fullPath, stdio: 'inherit' });
|
|
546
|
+
}
|
|
516
547
|
}
|
|
517
548
|
}
|
|
518
549
|
|
|
@@ -524,9 +555,6 @@ function runScaffold(choice, targetDir, pm) {
|
|
|
524
555
|
} else if (isNode) {
|
|
525
556
|
console.log(" node index.mjs\n");
|
|
526
557
|
} else {
|
|
527
|
-
if (isVite && pm !== 'bun') {
|
|
528
|
-
console.log(" " + pm + " install");
|
|
529
|
-
}
|
|
530
558
|
console.log(" " + devCmd + "\n");
|
|
531
559
|
}
|
|
532
560
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tiktok-live-api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.19",
|
|
4
4
|
"description": "Unofficial TikTok LIVE API Client — Real-time chat, gifts, viewers, battles, and AI live captions from any TikTok livestream. Managed WebSocket API with 99.9% uptime.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|