-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@rasvanjaya21/bfb",
"description": "Bot for billy",
"version": "0.4.0",
"keywords": [
"automation",
"typescript",
"bun",
"puppeteer",
"bunup"
],
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/rasvanjaya21/bfb#readme",
"bugs": {
"url": "https://github.com/rasvanjaya21/bfb/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rasvanjaya21/bfb.git"
},
"bin": {
"bfb": "dist/index.js"
},
"scripts": {
"build": "bunup && bunx javascript-obfuscator dist/index.js --output dist/index.js --compact true --control-flow-flattening true --dead-code-injection true --string-array true --string-array-encoding base64 --string-array-threshold 1",
"dev": "bunup --watch",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "oxlint",
"prepare": "bun simple-git-hooks",
"release": "bumpp --commit --push --tag",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"type-check": "tsgo --noEmit",
"clean": "bun run clean.ts",
"check": "bun run check.ts",
"mock": "json-server --port 3000 mock/datas.json --routes mock/routes.json --watch",
"auto": "bun clean.ts && bun install && bun run build"
},
"dependencies": {
"@puppeteer/browsers": "^2.13.0",
"chalk": "^5.3.0",
"puppeteer-core": "^24.41.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"@typescript/native-preview": "^7.0.0-dev.20260414.1",
"bumpp": "^11.0.1",
"bunup": "^0.16.31",
"javascript-obfuscator": "^5.4.1",
"json-server": "0.17.4",
"oxlint": "^1.60.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run type-check && bun run check"
}
}