-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.ts
25 lines (25 loc) · 911 Bytes
/
.projenrc.ts
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
import { OpsBRTypeScriptProject } from "@opsbr/projen-typescript";
import { javascript } from "projen";
const project = new OpsBRTypeScriptProject({
name: "eslint-import-resolver-typescript-bun",
defaultReleaseBranch: "main",
repository: "https://github.com/opsbr/eslint-import-resolver-typescript-bun",
homepage: "https://github.com/opsbr/eslint-import-resolver-typescript-bun",
bugsUrl:
"https://github.com/opsbr/eslint-import-resolver-typescript-bun/issues",
deps: ["debug", "eslint-import-resolver-typescript"],
devDeps: ["@opsbr/projen-typescript", "@types/debug"],
peerDeps: ["bun-types"],
workflowPackageCache: true,
releaseToNpm: true,
autoApproveUpgrades: true,
autoApproveOptions: {
allowedUsernames: ["opsbr-bot[bot]"],
},
depsUpgradeOptions: {
workflowOptions: {
schedule: javascript.UpgradeDependenciesSchedule.WEEKLY,
},
},
});
project.synth();