@mainqueueio/playground 0.4.4-next.58 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mainqueueio/playground",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"author": "diegocuehdz",
|
|
5
5
|
"description": "MainQueue's playground project for checking deploys, registries, and other things.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,7 +31,16 @@
|
|
|
31
31
|
],
|
|
32
32
|
"scripts": {
|
|
33
33
|
"husky:prepare": "is-ci || husky",
|
|
34
|
-
"lint": "bun
|
|
34
|
+
"lint": "concurrently --kill-others-on-fail \"bun run lint:tsc\" \"bun run lint:oxlinter\" \"bun run lint:oxlinter:type-aware\" \"bun run lint:eslinter\" \"bun run lint:format\"",
|
|
35
|
+
"lint:tsc": "bun tsgo --project ./tsconfig.json",
|
|
36
|
+
"lint:tsc-legacy": "bun --bun tsc --noEmit",
|
|
37
|
+
"lint:format": "bun --bun prettier -c ./src",
|
|
38
|
+
"lint:format:fix": "bun lint:format -- --write",
|
|
39
|
+
"lint:eslinter": "eslint ./src --max-warnings 0",
|
|
40
|
+
"lint:eslinter:fix": "bun lint:eslinter -- --fix",
|
|
41
|
+
"lint:oxlinter": "oxlint ./src --deny-warnings",
|
|
42
|
+
"lint:oxlinter:type-aware": "bun lint:oxlinter -- --type-aware",
|
|
43
|
+
"lint:oxlinter:fix": "bun lint:oxlinter -- --fix --fix-suggestions",
|
|
35
44
|
"test": "echo 'test is supported by bun, please run $bun test'",
|
|
36
45
|
"test:watch": "echo 'test & watch for changes is supported by bun, please run $bun test --watch'",
|
|
37
46
|
"test:coverage": "echo 'test with coverage is supported by bun, please run $bun test --coverage'",
|
|
@@ -43,7 +52,9 @@
|
|
|
43
52
|
"devDependencies": {
|
|
44
53
|
"@commitlint/cli": "^20.1.0",
|
|
45
54
|
"@commitlint/config-conventional": "^20.0.0",
|
|
55
|
+
"@mainqueueio/eslint-config": "0.1.6-next.26",
|
|
46
56
|
"@release-it/conventional-changelog": "^10.0.2",
|
|
57
|
+
"@typescript/native-preview": "7.0.0-dev.20251118.1",
|
|
47
58
|
"@types/bun": "latest",
|
|
48
59
|
"husky": "^9.1.7",
|
|
49
60
|
"is-ci": "^4.1.0",
|