-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "autosocial-studio",
"version": "0.1.0",
"description": "Local multi-account social media automation dashboard for TikTok, Instagram, and YouTube",
"private": true,
"main": "src/cli.js",
"scripts": {
"start": "node src/dashboard-server.js",
"clean:debug": "node scripts/clean-runtime.js",
"check": "npm run check:syntax && npm test",
"check:syntax": "node scripts/check-syntax.js",
"doctor": "node scripts/doctor.js",
"test": "node --test",
"login": "node src/cli.js login",
"post": "node src/cli.js post",
"daemon": "node src/cli.js daemon",
"dashboard": "node src/dashboard-server.js",
"uniquify": "node src/cli.js uniquify",
"video-info": "node src/cli.js video-info",
"autodownload": "node autodownload/watcher.js"
},
"keywords": [
"automation",
"dashboard",
"creator-tools",
"marketing",
"social-media",
"indie-hackers",
"ai-builders",
"playwright",
"tiktok",
"instagram",
"youtube"
],
"author": "AutoSocial Studio contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Katzca/AutoSocial.git"
},
"bugs": {
"url": "https://github.com/Katzca/AutoSocial/issues"
},
"homepage": "https://github.com/Katzca/AutoSocial#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"dotenv": "^17.3.1",
"express": "^5.2.1",
"node-cron": "^4.2.1",
"playwright": "^1.58.2",
"yargs": "^18.0.0"
}
}