@under_koen/bsm 1.9.0 → 1.9.1
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/dist/index.js +24 -29
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@under_koen/bsm",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "BSM (Basic Script Manager) is a useful tool that enables you to create clear and concise scripts without cluttering your `package.json` file.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Koen van Staveren <koen@underkoen.nl>",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/UnderKoen/bsm/issues"
|
|
14
14
|
},
|
|
15
|
+
"type": "module",
|
|
15
16
|
"main": "dist/index.js",
|
|
16
17
|
"bin": {
|
|
17
18
|
"bsm": "./dist/index.js"
|
|
@@ -26,13 +27,12 @@
|
|
|
26
27
|
"build:watch": "bsm",
|
|
27
28
|
"lint": "bsm",
|
|
28
29
|
"prettier": "bsm",
|
|
29
|
-
"prepublishOnly": "bsm build.prod",
|
|
30
30
|
"test": "bsm",
|
|
31
31
|
"test:cov": "bsm test.cov"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@eslint/js": "^9.21.0",
|
|
35
|
-
"@inquirer/core": "^10.
|
|
35
|
+
"@inquirer/core": "^10.3.0",
|
|
36
36
|
"@semantic-release/changelog": "^6.0.3",
|
|
37
37
|
"@semantic-release/exec": "^7.0.3",
|
|
38
38
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/sinon": "^17.0.4",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^8.26.0",
|
|
44
44
|
"@typescript-eslint/parser": "^8.26.0",
|
|
45
|
-
"@under_koen/bsm": "^1.
|
|
45
|
+
"@under_koen/bsm": "^1.9.0",
|
|
46
46
|
"c8": "^10.1.3",
|
|
47
47
|
"ci-info": "^4.1.0",
|
|
48
48
|
"cpy-cli": "^5.0.0",
|
|
@@ -53,12 +53,13 @@
|
|
|
53
53
|
"glob": "^11.0.3",
|
|
54
54
|
"globals": "^16.0.0",
|
|
55
55
|
"minimist": "^1.2.8",
|
|
56
|
+
"mlly": "^1.8.0",
|
|
56
57
|
"prettier": "^3.5.3",
|
|
57
58
|
"prettier-package-json": "^2.8.0",
|
|
58
59
|
"rimraf": "^6.0.1",
|
|
59
60
|
"semantic-release": "^24.2.3",
|
|
60
61
|
"sinon": "^19.0.2",
|
|
61
|
-
"
|
|
62
|
+
"tsx": "^4.20.6",
|
|
62
63
|
"typescript": "^5.8.2",
|
|
63
64
|
"typescript-eslint": "^8.26.0",
|
|
64
65
|
"uvu": "^0.5.6"
|