-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.07 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
106
107
108
109
110
111
112
{
"name": "telegram-bot",
"version": "0.1.0",
"description": "Ubiquibot plugin template repository with TypeScript support.",
"author": "Ubiquity DAO",
"license": "MIT",
"main": "src/worker.ts",
"type": "module",
"engines": {
"node": ">=20.10.0"
},
"imports": {
"#root/*": "./build/src/*"
},
"scripts": {
"format": "run-p format:*",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format:cspell": "cspell **/*",
"knip": "knip --config .github/knip.ts",
"knip-ci": "knip --no-exit-code --reporter json --config .github/knip.ts",
"prepare": "husky install",
"test": "jest --setupFiles dotenv/config --coverage",
"worker": "wrangler dev --env dev --port 3000",
"dev": "tsc-watch --onSuccess \"tsx ./src/main.ts\"",
"start": "tsx ./src/main.ts",
"deploy": "wrangler deploy --minify src/main.ts",
"build": "npx tsx build/esbuild-build.ts",
"serve": "npx tsx build/esbuild-server.ts"
},
"keywords": [
"typescript",
"template",
"dao",
"ubiquity",
"open-source"
],
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@grammyjs/auto-chat-action": "0.1.1",
"@grammyjs/hydrate": "1.4.1",
"@grammyjs/i18n": "1.0.2",
"@grammyjs/parse-mode": "1.10.0",
"@grammyjs/runner": "2.0.3",
"@grammyjs/types": "3.13.0",
"@hono/node-server": "^1.12.1",
"@octokit/rest": "21.0.2",
"@octokit/webhooks": "13.3.0",
"@sinclair/typebox": "0.33.7",
"@ubiquity-dao/ubiquibot-logger": "^1.3.1",
"callback-data": "1.1.1",
"dotenv": "16.4.5",
"grammy": "^1.29.0",
"grammy-guard": "0.5.0",
"hono": "^4.5.9",
"iso-639-1": "3.1.2",
"pino": "9.3.2",
"pino-pretty": "11.2.2",
"typebox-validators": "0.3.5",
"valibot": "0.39.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240529.0",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@cspell/dict-node": "5.0.1",
"@cspell/dict-software-terms": "4.1.0",
"@cspell/dict-typescript": "3.1.6",
"@eslint/js": "9.9.1",
"@jest/globals": "29.7.0",
"@mswjs/data": "0.16.1",
"@types/jest": "^29.5.12",
"@types/node": "22.5.0",
"cspell": "8.14.2",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-check-file": "2.8.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-sonarjs": "2.0.1",
"husky": "9.1.5",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-md-dashboard": "0.8.0",
"knip": "5.27.4",
"lint-staged": "15.2.9",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"smee-client": "^2.0.3",
"ts-jest": "29.2.5",
"tsc-watch": "^6.2.0",
"tsx": "4.18.0",
"typescript": "5.5.4",
"typescript-eslint": "8.3.0",
"wrangler": "3.72.2"
},
"lint-staged": {
"*.ts": [
"yarn prettier --write",
"eslint --fix"
],
"src/**.{ts,json}": [
"cspell"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]"
}