-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.04 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
{
"name": "bullmq-proxy",
"version": "1.4.0",
"private": true,
"main": "index.js",
"author": "Manuel Astudillo <manuel@optimalbits.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/taskforcesh/bullmq-proxy.git"
},
"scripts": {
"prepare": "husky",
"dev": "bun run --watch src/index.ts",
"start": "bun src/index.ts",
"build:declaration": "tsc --emitDeclarationOnly",
"tsc": "tsc --noEmit",
"commitlint": "commitlint --edit",
"test:e2e": "bun test ./src/e2e-test.ts"
},
"dependencies": {
"@sinclair/typebox": "^0.31.17",
"bullmq": "^5.12.2",
"chalk": "^5.3.0",
"ioredis": "^5.4.1",
"semver": "^7.6.0"
},
"trustedDependencies": [
"@taskforcesh/message-broker"
],
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@tsconfig/node-lts": "^18.12.5",
"@types/node": "^12.0.0",
"bun-types": "^1.0.29",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"typescript": "^5.3.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/gitbook/changelog.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"bun.lockb",
"docs/gitbook/changelog.md",
"docs/gitbook/api/**"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}