-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.7 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.7 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
{
"name": "scripts",
"version": "1.0.0",
"description": "CodeBloom CI Scripts",
"scripts": {
"coolify-lib-hack": "find node_modules/coolify -type f -name '*.ts' -exec sh -c 'echo \"// @ts-nocheck\" > /tmp/file.tmp && cat \"$1\" >> /tmp/file.tmp && mv /tmp/file.tmp \"$1\"' _ {} \\;",
"typecheck": "bun run coolify-lib-hack && tsc --noEmit",
"test": "bun run typecheck && bun run prettier && bun run lint",
"fix": "bun run eslint:fix && bun run prettier:fix",
"lint": "bun run eslint",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"keywords": [],
"author": "Tahmid Ahmed",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^5.0.2",
"@digitalocean/dots": "^1.7.0",
"@notionhq/client": "^5.7.0",
"@octokit/rest": "^22.0.1",
"@tahminator/pipeline": "^1.0.18",
"@types/yargs": "^17.0.35",
"bun": "^1.3.6",
"coolify": "https://github.com/tahminator/Coolify-TypeScript-SDK#8e19e18635ea2b095a9c39c574d22eefd938441f",
"discord.js": "^14.25.1",
"octokit": "^5.0.5",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"typescript": "^5.9.0",
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.6",
"prettier": "^3.8.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-perfectionist": "^5.3.1",
"global": "^4.4.0",
"typescript-eslint": "^8.53.0"
},
"patchedDependencies": {
"@digitalocean/dots@1.7.0": "patches/@digitalocean%2Fdots@1.7.0.patch"
}
}