-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "@opensumi/github-bot",
"packageManager": "[email protected]",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/opensumi/github-bot.git",
"license": "MIT",
"engines": {
"node": "18.19.0"
},
"workspaces": ["libs/*"],
"scripts": {
"build": "hereby build",
"build:libs": "hereby build:libs",
"build:cfworker": "hereby build:cfworker",
"build:node": "hereby build:node",
"watch": "hereby watch",
"watch:libs": "hereby watch:libs",
"dev": "hereby dev",
"dev:node": "hereby dev:node",
"dev:node:debug": "hereby dev:node:debug",
"dev:worker:preview": "hereby dev:worker:preview",
"dev:worker": "hereby dev:worker",
"dev:proxy": "hereby dev:proxy",
"gen": "hereby gen",
"clean": "hereby clean",
"predeploy:local": "yarn build",
"publish:libs": "lerna publish",
"lint": "biome check",
"lint:fix": "yarn biome check --write",
"format": "yarn biome format --write",
"test": "jest --config jest.config.js --verbose",
"test:cov": "yarn test --coverage",
"extract-fixtures": "tsx scripts/extract-webhook-example.ts",
"generate:json-schemas": "node scripts/generate-json-schemas-all.mjs",
"postinstall": "yarn build:libs"
},
"dependencies": {
"@hono/node-server": "^1.11.1",
"@octokit/app": "^14.0.0",
"@octokit/core": "^5.0.0",
"@octokit/rest": "^20.0.1",
"@octokit/webhooks": "^12.0.3",
"@opensumi/bot-commander": "workspace:^",
"@opensumi/cfworker-builder": "workspace:^",
"@opensumi/dingtalk-bot": "workspace:^",
"@opensumi/ide-utils": "^3.1.1",
"@opensumi/octo-service": "workspace:^",
"@opensumi/workers-kv": "workspace:^",
"@opensumi/workers-utils": "workspace:^",
"dayjs": "^1.11.10",
"es-toolkit": "^1.21.0",
"hono": "^4.3.9",
"kv-storage": "^0.0.9",
"lowdb": "^7.0.1",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-markdown": "^2.1.0",
"micromark-extension-gfm": "^3.0.0",
"mnemonist": "^0.39.5",
"mri": "^1.2.0",
"tsx": "^4.19.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@cloudflare/workers-types": "^4.20240620.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@octokit/types": "^11.1.0",
"@octokit/webhooks-examples": "^7.3.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"dotenv": "^16.3.1",
"esbuild": "^0.24.0",
"execa": "^9.2.0",
"hereby": "^1.9.0",
"jest": "^29.4.1",
"lefthook": "^1.3.8",
"lerna": "^8.1.6",
"nodemon": "^3.1.4",
"smee-client": "^2.0.3",
"string.prototype.replaceall": "^1.0.7",
"ts-jest": "^29.0.5",
"ts-json-schema-generator": "^2.1.1",
"typescript": "^5.4.5",
"wrangler": "^3.80.2"
}
}