-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tiktoker",
"version": "2.0.0",
"description": "Who said only humans can be tiktoker? 😲",
"private": false,
"types": "build/types/types.d.ts",
"bin": {
"tiktoker": "bin/tiktoker"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles ./src/templates/* ./build/templates",
"build": "pnpm run clean-build && pnpm run compile && pnpm run copy-templates",
"prepublishOnly": "pnpm run build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"postinstall": "node scripts/postinstall.js",
"release": "pnpm semantic-release"
},
"files": [
"build",
"LICENSE",
"readme.md",
"docs",
"bin",
"prisma",
"package.json",
"scripts"
],
"license": "MIT",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@prisma/client": "^4.3.1",
"axios": "^0.27.2",
"dotenv-cli": "^6.0.0",
"ffcreator": "^6.7.5",
"get-video-duration": "^4.1.0",
"gluegun": "latest",
"loading-cli": "^1.1.0",
"prisma": "^4.3.1",
"puppeteer": "^17.1.1"
},
"devDependencies": {
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.20",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"commitizen": "^4.2.5",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^19.0.5",
"ts-jest": "^26.5.3",
"ts-node": "10.6.0",
"typescript": "^4.2.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"tiktoker",
"tiktok",
"bot",
"tiktok bot",
"tiktok creator",
"creator"
],
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/Theryston/tiktoker.git",
"author": "Theryston Santos <funktodo2@gmail.com>",
"homepage": "https://github.com/Theryston/tiktoker",
"bugs": {
"url": "https://github.com/Theryston/tiktoker/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}