-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "multbot",
"version": "1.0.0",
"description": "MultiBot - Admin Platform for Telegram Bots with Pix Integration",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -r --parallel run dev",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"lint:strict": "pnpm -r run lint:strict",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,scss,yml,yaml}": [
"pnpm exec prettier --write"
],
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"pnpm exec eslint --fix",
"pnpm exec eslint --config eslint.strict.config.mjs"
]
},
"devDependencies": {
"@eslint/js": "9.9.1",
"eslint": "9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "5.1.0-rc.0",
"eslint-plugin-react-refresh": "0.4.11",
"eslint-plugin-unused-imports": "^4.4.0",
"globals": "15.9.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"typescript-eslint": "8.3.0"
},
"pnpm": {
"overrides": {
"@swc/core": "1.13.3"
}
},
"keywords": [
"telegram",
"bot",
"pix",
"payment"
],
"author": "",
"license": "MIT"
}