@shba007/unascii 1.0.0 → 1.0.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/LICENSE +2 -2
- package/README.md +8 -2
- package/dist/cli.cjs +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +9 -9
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2024 Shirsendu Bairagi
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<
|
|
3
|
-
<
|
|
2
|
+
<picture>
|
|
3
|
+
<source srcset="./public/logo-dark.png" media="(prefers-color-scheme: dark)">
|
|
4
|
+
<source srcset="./public/logo-light.png" media="(prefers-color-scheme: light)">
|
|
5
|
+
<img src="./public/logo-light.png" alt="Logo" width="128">
|
|
6
|
+
</picture>
|
|
7
|
+
</p>
|
|
4
8
|
|
|
5
9
|
# UnASCII
|
|
6
10
|
|
|
@@ -10,6 +14,8 @@
|
|
|
10
14
|
|
|
11
15
|
> Print any image in ascii anywhere (browser/cli)
|
|
12
16
|
|
|
17
|
+
<video controls src="public/preview.mp4" title="Demo" loop muted autoplay></video>
|
|
18
|
+
|
|
13
19
|
## Usage (CLI)
|
|
14
20
|
|
|
15
21
|
Globally run unascii with `npx`:
|
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.1";
|
|
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.1";
|
|
11
11
|
const description = "Print any image in ascii anywhere (browser/cli)";
|
|
12
12
|
|
|
13
13
|
const storage = createStorage({
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shba007/unascii",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Print any image in ascii anywhere (browser/cli)",
|
|
5
5
|
"author": "Shirsendu Bairagi <shirsendu2001@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/shba007/unascii.git"
|
|
9
|
+
"url": "git+https://github.com/shba007/unascii.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [],
|
|
12
12
|
"sideEffects": false,
|
|
@@ -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.2.
|
|
41
|
+
"packageManager": "bun@1.2.19",
|
|
42
42
|
"scripts": {
|
|
43
43
|
"prepare": "husky || true",
|
|
44
44
|
"dev": "dotenvx run -- vitest dev",
|
|
@@ -60,18 +60,18 @@
|
|
|
60
60
|
"consola": "^3.4.2",
|
|
61
61
|
"pathe": "^2.0.3",
|
|
62
62
|
"std-env": "^3.9.0",
|
|
63
|
-
"unstorage": "^1.16.
|
|
63
|
+
"unstorage": "^1.16.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@commitlint/cli": "^19.8.1",
|
|
67
67
|
"@commitlint/config-conventional": "^19.8.1",
|
|
68
|
-
"@dotenvx/dotenvx": "^1.
|
|
69
|
-
"@types/node": "^24.0
|
|
68
|
+
"@dotenvx/dotenvx": "^1.48.3",
|
|
69
|
+
"@types/node": "^24.1.0",
|
|
70
70
|
"@vitest/coverage-v8": "^3.2.4",
|
|
71
|
-
"eslint": "^9.
|
|
71
|
+
"eslint": "^9.32.0",
|
|
72
72
|
"eslint-config-unjs": "^0.5.0",
|
|
73
73
|
"husky": "^9.1.7",
|
|
74
|
-
"jiti": "^2.
|
|
74
|
+
"jiti": "^2.5.1",
|
|
75
75
|
"prettier": "^3.6.2",
|
|
76
76
|
"typescript": "^5.8.3",
|
|
77
77
|
"unbuild": "3.5.0",
|
|
@@ -82,4 +82,4 @@
|
|
|
82
82
|
"canvas",
|
|
83
83
|
"esbuild"
|
|
84
84
|
]
|
|
85
|
-
}
|
|
85
|
+
}
|