-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 KB
/
package.json
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
56
{
"name": "tikapi",
"version": "3.2.0",
"description": "A fully managed unofficial TikTok API with OAuth capabilities",
"main": "./dist/index.cjs",
"module": "./index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build-python && npm run build-js",
"build-js": "npm run build-types && tsc && tsup index.ts --dts --clean && node after_build.js",
"build-types": "rests api.js -t ./api.d.ts --types_template ./template.ts",
"build-python": "rests api.js -p ./python-api/tikapi/api.py --python_template ./python-api/tikapi/template.py",
"tests": "echo \" no tests specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tikapi-io/tiktok-api.git"
},
"keywords": [
"tiktok",
"api",
"tikapi",
"messages",
"api",
"unofficial",
"api",
"oauth",
"tik",
"tok",
"tiktokapi",
"tiktok-scraper",
"scraper",
"signature",
"automation",
"tiktok-live",
"tiktok-comment",
"live"
],
"author": "TikAPI",
"license": "ISC",
"bugs": {
"url": "https://tikapi.io"
},
"homepage": "https://tikapi.io",
"devDependencies": {
"@types/node": "^18.14.2",
"https-proxy-agent": "^5.0.1",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"dependencies": {
"node-fetch": "^3.3.0",
"rests": "^1.1.0"
}
}