@shba007/unascii 1.0.1 → 1.0.4
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/cli.cjs +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +20 -19
package/dist/cli.cjs
CHANGED
|
@@ -14,7 +14,7 @@ const pathe__default = /*#__PURE__*/_interopDefaultCompat(pathe);
|
|
|
14
14
|
const fsDriver__default = /*#__PURE__*/_interopDefaultCompat(fsDriver);
|
|
15
15
|
|
|
16
16
|
const name = "@shba007/unascii";
|
|
17
|
-
const version = "1.0.
|
|
17
|
+
const version = "1.0.4";
|
|
18
18
|
const description = "Print any image in ascii anywhere (browser/cli)";
|
|
19
19
|
|
|
20
20
|
const storage = unstorage.createStorage({
|
package/dist/cli.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import fsDriver from 'unstorage/drivers/fs';
|
|
|
7
7
|
import { a as asciiPrint, i as isURL } from './shared/unascii.B-n97ykJ.mjs';
|
|
8
8
|
|
|
9
9
|
const name = "@shba007/unascii";
|
|
10
|
-
const version = "1.0.
|
|
10
|
+
const version = "1.0.4";
|
|
11
11
|
const description = "Print any image in ascii anywhere (browser/cli)";
|
|
12
12
|
|
|
13
13
|
const storage = createStorage({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shba007/unascii",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Print any image in ascii anywhere (browser/cli)",
|
|
5
5
|
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"pnpm": "^9.15.0 || ^10.2.0",
|
|
39
39
|
"bun": "^1.2.9"
|
|
40
40
|
},
|
|
41
|
-
"packageManager": "bun@1.
|
|
41
|
+
"packageManager": "bun@1.3.4",
|
|
42
42
|
"scripts": {
|
|
43
43
|
"prepare": "husky || true",
|
|
44
44
|
"dev": "dotenvx run -- vitest dev",
|
|
@@ -49,34 +49,35 @@
|
|
|
49
49
|
"test": "bun lint && bun test:types && dotenvx run -- vitest run --coverage",
|
|
50
50
|
"play": "dotenvx run -- jiti examples",
|
|
51
51
|
"build": "unbuild",
|
|
52
|
+
"bun:build": "bun run build && bun build bin/unascii.mjs --compile --production --outfile=dist/bin/cli.exe",
|
|
52
53
|
"prepack": "bun run build",
|
|
53
54
|
"clean": "rm -rf coverage dist",
|
|
54
|
-
"unascii": "
|
|
55
|
+
"unascii": "./dist/bin/cli.exe"
|
|
55
56
|
},
|
|
56
57
|
"dependencies": {
|
|
57
|
-
"canvas": "^3.
|
|
58
|
-
"chalk": "^5.
|
|
58
|
+
"canvas": "^3.2.0",
|
|
59
|
+
"chalk": "^5.6.2",
|
|
59
60
|
"citty": "^0.1.6",
|
|
60
61
|
"consola": "^3.4.2",
|
|
61
62
|
"pathe": "^2.0.3",
|
|
62
|
-
"std-env": "^3.
|
|
63
|
-
"unstorage": "^1.
|
|
63
|
+
"std-env": "^3.10.0",
|
|
64
|
+
"unstorage": "^1.17.3"
|
|
64
65
|
},
|
|
65
66
|
"devDependencies": {
|
|
66
|
-
"@commitlint/cli": "^
|
|
67
|
-
"@commitlint/config-conventional": "^
|
|
68
|
-
"@dotenvx/dotenvx": "^1.
|
|
69
|
-
"@types/node": "^
|
|
70
|
-
"@vitest/coverage-v8": "^
|
|
71
|
-
"eslint": "^9.
|
|
67
|
+
"@commitlint/cli": "^20.2.0",
|
|
68
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
69
|
+
"@dotenvx/dotenvx": "^1.51.2",
|
|
70
|
+
"@types/node": "^25.0.2",
|
|
71
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
72
|
+
"eslint": "^9.39.2",
|
|
72
73
|
"eslint-config-unjs": "^0.5.0",
|
|
73
74
|
"husky": "^9.1.7",
|
|
74
|
-
"jiti": "^2.
|
|
75
|
-
"prettier": "^3.
|
|
76
|
-
"typescript": "^5.
|
|
77
|
-
"unbuild": "3.
|
|
78
|
-
"vitepress": "^1.6.
|
|
79
|
-
"vitest": "^
|
|
75
|
+
"jiti": "^2.6.1",
|
|
76
|
+
"prettier": "^3.7.4",
|
|
77
|
+
"typescript": "^5.9.3",
|
|
78
|
+
"unbuild": "^3.6.1",
|
|
79
|
+
"vitepress": "^1.6.4",
|
|
80
|
+
"vitest": "^4.0.15"
|
|
80
81
|
},
|
|
81
82
|
"trustedDependencies": [
|
|
82
83
|
"canvas",
|