@mahameru/cli 0.0.15 → 0.0.16

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 CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@mahameru/cli",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "MahameruJS CLI Utility - The command-line interface for running and building Mahameru-based applications",
5
5
  "bin": {
6
- "mahameru": "./dist/index.js"
6
+ "mahameru": "./bin.js"
7
7
  },
8
8
  "scripts": {
9
9
  "typecheck": "tsc --noEmit --project tsconfig.json",
10
- "clean": "rimraf dist",
10
+ "clean": "rimraf bin.js",
11
11
  "build": "npm run clean && webpack",
12
12
  "prepare": "npm run build"
13
13
  },
@@ -24,10 +24,12 @@
24
24
  ],
25
25
  "author": "Bintan <hello@bintvn.co>",
26
26
  "license": "ISC",
27
- "type": "module",
28
27
  "files": [
29
- "dist"
28
+ "bin.js"
30
29
  ],
30
+ "engines": {
31
+ "node": ">=20.6.0"
32
+ },
31
33
  "devDependencies": {
32
34
  "@types/node": "^26.0.0",
33
35
  "@types/webpack-node-externals": "^3.0.4",
@@ -37,7 +39,9 @@
37
39
  "picocolors": "^1.1.1",
38
40
  "rimraf": "^6.1.3",
39
41
  "strip-ansi": "^7.2.0",
42
+ "terser-webpack-plugin": "^5.6.1",
40
43
  "ts-loader": "^9.6.1",
44
+ "ts-node": "^10.9.2",
41
45
  "tsc-alias": "^1.8.17",
42
46
  "tsconfig-paths-webpack-plugin": "^4.2.0",
43
47
  "tsx": "^4.22.4",