@visulima/fmt 1.1.12 → 1.1.14
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/CHANGELOG.md +22 -0
- package/README.md +1 -1
- package/dist/index.cjs +664 -1
- package/dist/index.mjs +659 -1
- package/package.json +2 -61
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/fmt",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "Util.format-like string formatting utility.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -70,37 +70,8 @@
|
|
|
70
70
|
"CHANGELOG.md",
|
|
71
71
|
"LICENSE.md"
|
|
72
72
|
],
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@anolilab/eslint-config": "^15.0.3",
|
|
75
|
-
"@anolilab/prettier-config": "^5.0.14",
|
|
76
|
-
"@anolilab/semantic-release-pnpm": "^1.1.5",
|
|
77
|
-
"@anolilab/semantic-release-preset": "^9.0.2",
|
|
78
|
-
"@arethetypeswrong/cli": "^0.17.1",
|
|
79
|
-
"@babel/core": "^7.26.0",
|
|
80
|
-
"@rushstack/eslint-plugin-security": "^0.8.3",
|
|
81
|
-
"@types/node": "18.19.15",
|
|
82
|
-
"@visulima/packem": "1.9.2",
|
|
83
|
-
"@vitest/coverage-v8": "^2.1.8",
|
|
84
|
-
"@vitest/ui": "^2.1.8",
|
|
85
|
-
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
86
|
-
"cross-env": "^7.0.3",
|
|
87
|
-
"esbuild": "0.24.0",
|
|
88
|
-
"eslint": "8.57.0",
|
|
89
|
-
"eslint-plugin-deprecation": "^3.0.0",
|
|
90
|
-
"eslint-plugin-etc": "^2.0.3",
|
|
91
|
-
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
|
92
|
-
"eslint-plugin-mdx": "^3.1.5",
|
|
93
|
-
"eslint-plugin-vitest": "^0.4.1",
|
|
94
|
-
"eslint-plugin-vitest-globals": "^1.5.0",
|
|
95
|
-
"prettier": "^3.4.2",
|
|
96
|
-
"quick-format-unescaped": "^4.0.4",
|
|
97
|
-
"rimraf": "5.0.9",
|
|
98
|
-
"semantic-release": "24.0.0",
|
|
99
|
-
"typescript": "5.4.5",
|
|
100
|
-
"vitest": "^2.1.8"
|
|
101
|
-
},
|
|
102
73
|
"engines": {
|
|
103
|
-
"node": ">=18
|
|
74
|
+
"node": ">=18.0.0 <=23.x"
|
|
104
75
|
},
|
|
105
76
|
"os": [
|
|
106
77
|
"darwin",
|
|
@@ -110,35 +81,5 @@
|
|
|
110
81
|
"publishConfig": {
|
|
111
82
|
"access": "public",
|
|
112
83
|
"provenance": true
|
|
113
|
-
},
|
|
114
|
-
"anolilab": {
|
|
115
|
-
"eslint-config": {
|
|
116
|
-
"plugin": {
|
|
117
|
-
"tsdoc": false
|
|
118
|
-
},
|
|
119
|
-
"warn_on_unsupported_typescript_version": false,
|
|
120
|
-
"info_on_disabling_jsx_react_rule": false,
|
|
121
|
-
"info_on_disabling_prettier_conflict_rule": false,
|
|
122
|
-
"info_on_disabling_jsonc_sort_keys_rule": false,
|
|
123
|
-
"info_on_disabling_etc_no_deprecated": false
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
|
-
"scripts": {
|
|
127
|
-
"build": "cross-env NODE_ENV=development packem build",
|
|
128
|
-
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
129
|
-
"clean": "rimraf node_modules dist .eslintcache",
|
|
130
|
-
"dev": "pnpm run build --watch",
|
|
131
|
-
"lint:attw": "attw --pack",
|
|
132
|
-
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
|
|
133
|
-
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
|
|
134
|
-
"lint:package-json": "publint --strict",
|
|
135
|
-
"lint:prettier": "prettier --config=.prettierrc.cjs --check .",
|
|
136
|
-
"lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
|
|
137
|
-
"lint:types": "tsc --noEmit",
|
|
138
|
-
"test": "vitest run",
|
|
139
|
-
"test:bench": "vitest bench",
|
|
140
|
-
"test:coverage": "vitest run --coverage",
|
|
141
|
-
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
142
|
-
"test:watch": "vitest"
|
|
143
84
|
}
|
|
144
85
|
}
|