-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.52 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
57
58
59
60
61
62
{
"name": "@xct007/tiktok-scraper",
"version": "1.0.2",
"description": "Tiktok scraper for Node.js",
"main": "./dist/cjs/index.js",
"types": "./dist/@types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/@types/index.d.ts",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "npm-run-all build:clean compile fix:import && node ./scripts/prepare.js",
"build:clean": "rimraf ./dist",
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"fix:import": "fix-esm-import-path ./dist/esm",
"fix:lint": "eslint --fix ./src",
"lint": "eslint ./src",
"prepare": "npm run build",
"prepublishOnly": "npm run prepare",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xct007/tiktok-scraper.git"
},
"files": [
"dist"
],
"keywords": [
"tiktok",
"scraper",
"download",
"tiktod",
"api"
],
"author": "FrierenDv",
"license": "MIT",
"bugs": {
"url": "https://github.com/xct007/tiktok-scraper/issues"
},
"homepage": "https://github.com/xct007/tiktok-scraper#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.9.0",
"fix-esm-import-path": "^1.10.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"axios": "^1.2.1"
}
}