@minimaltech/node-infra 0.5.10-3 → 0.5.10-9

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.
Files changed (1) hide show
  1. package/package.json +22 -23
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minimaltech/node-infra",
3
- "version": "0.5.10-3",
3
+ "version": "0.5.10-9",
4
4
  "description": "Minimal Technology - NodeJS Infrastructure - Loopback 4 Framework",
5
5
  "keywords": [
6
6
  "web",
@@ -67,6 +67,25 @@
67
67
  "engines": {
68
68
  "node": ">=18"
69
69
  },
70
+ "scripts": {
71
+ "build": "sh ./scripts/build.sh",
72
+ "clean": "sh ./scripts/clean.sh",
73
+ "eslint": "eslint --report-unused-disable-directives .",
74
+ "lint": "bun run eslint && bun run prettier:cli",
75
+ "lint:fix": "bun run eslint --fix && bun run prettier:fix",
76
+ "prettier:cli": "prettier \"**/*.{js,ts}\" -l",
77
+ "prettier:fix": "bun run prettier:cli --write",
78
+ "rebuild": "sh ./scripts/rebuild.sh no-version",
79
+ "rebuild:major": "sh ./scripts/rebuild.sh major",
80
+ "rebuild:minor": "sh ./scripts/rebuild.sh minor",
81
+ "rebuild:patch": "sh ./scripts/rebuild.sh patch",
82
+ "rebuild:premajor": "sh ./scripts/rebuild.sh premajor",
83
+ "rebuild:preminor": "sh ./scripts/rebuild.sh preminor",
84
+ "rebuild:prepatch": "sh ./scripts/rebuild.sh prepatch",
85
+ "rebuild:prerelease": "sh ./scripts/rebuild.sh prerelease",
86
+ "pretest:develop": "bun run rebuild",
87
+ "test:develop": "NODE_ENV=development mocha -r dotenv-flow/config -r source-map-support/register --timeout 60000 --exit dist/__tests__/index.js"
88
+ },
70
89
  "repository": {
71
90
  "type": "git",
72
91
  "url": "git+https://github.com/phatnt199/aether.git"
@@ -134,7 +153,6 @@
134
153
  }
135
154
  },
136
155
  "devDependencies": {
137
- "@loopback/build": "^12.0.4",
138
156
  "@minimaltech/eslint-node": "^0.2.1",
139
157
  "@types/express": "4.17.21",
140
158
  "@types/jsonwebtoken": "^9.0.10",
@@ -150,24 +168,5 @@
150
168
  "tsconfig-paths": "^4.2.0",
151
169
  "typescript": "~5.9.3"
152
170
  },
153
- "sideEffects": false,
154
- "scripts": {
155
- "build": "sh ./scripts/build.sh",
156
- "clean": "sh ./scripts/clean.sh",
157
- "eslint": "eslint --report-unused-disable-directives .",
158
- "lint": "pnpm eslint && pnpm prettier:cli",
159
- "lint:fix": "pnpm eslint --fix && pnpm prettier:fix",
160
- "prettier:cli": "prettier \"**/*.{js,ts}\" -l",
161
- "prettier:fix": "pnpm prettier:cli --write",
162
- "rebuild": "sh ./scripts/rebuild.sh no-version",
163
- "rebuild:major": "sh ./scripts/rebuild.sh major",
164
- "rebuild:minor": "sh ./scripts/rebuild.sh minor",
165
- "rebuild:patch": "sh ./scripts/rebuild.sh patch",
166
- "rebuild:premajor": "sh ./scripts/rebuild.sh premajor",
167
- "rebuild:preminor": "sh ./scripts/rebuild.sh preminor",
168
- "rebuild:prepatch": "sh ./scripts/rebuild.sh prepatch",
169
- "rebuild:prerelease": "sh ./scripts/rebuild.sh prerelease",
170
- "pretest:develop": "pnpm run rebuild",
171
- "test:develop": "NODE_ENV=development mocha -r dotenv-flow/config -r source-map-support/register --timeout 60000 --exit dist/__tests__/index.js"
172
- }
173
- }
171
+ "sideEffects": false
172
+ }