wodn.js 1.0.0

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.
Files changed (19) hide show
  1. package/.config/termux/termux.properties +93 -0
  2. package/.npm/_cacache/content-v2/sha512/0e/b4/5dfadb5df4fc4eb029c701744cf15c9a80c6d38c7458e4273de88b15a25160a7c78336da824de1a5d6b9227d111e74534715cbc209335e02c2bada5a746c +0 -0
  3. package/.npm/_cacache/content-v2/sha512/6b/b9/798cc36845d7c39aedafb0ccbb379dc8a0b37218e786c1e72adc1738f71eb46902f37abb2274ed0718cec3a3053fd5c3a7ed250b3eaecccd2e51085f38f4 +0 -0
  4. package/.npm/_cacache/content-v2/sha512/75/42/eb8f7b825a5bf869a21498aedcb15dbc8c355cc0bc4c3a43c5d8c8705269b71f1f778090de1fbbbedd5085e74338324d5e5ec30e50095e295f0f693246bd +0 -0
  5. package/.npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea +4 -0
  6. package/.npm/_logs/2026-09-07T10_35_37_172Z-debug-0.log +17 -0
  7. package/.npm/_logs/2026-09-07T10_35_51_548Z-debug-0.log +17 -0
  8. package/.npm/_logs/2026-09-07T10_36_33_746Z-debug-0.log +46 -0
  9. package/.npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log +64 -0
  10. package/.npm/_logs/2026-09-07T10_40_35_876Z-debug-0.log +18 -0
  11. package/.npm/_logs/2026-09-07T10_40_42_743Z-debug-0.log +18 -0
  12. package/.npm/_logs/2026-09-07T10_40_49_825Z-debug-0.log +69 -0
  13. package/.npm/_logs/2026-09-07T10_42_26_731Z-debug-0.log +18 -0
  14. package/.npm/_logs/2026-09-07T10_42_30_016Z-debug-0.log +72 -0
  15. package/.npm/_logs/2026-09-07T10_43_21_626Z-debug-0.log +18 -0
  16. package/.npm/_logs/2026-09-07T10_43_24_303Z-debug-0.log +14 -0
  17. package/.npm/_update-notifier-last-checked +0 -0
  18. package/index.js +2 -0
  19. package/package.json +18 -0
@@ -0,0 +1,93 @@
1
+ ### This is a `.properties` [https://en.wikipedia.org/wiki/.properties] file
2
+ ### for termux app properties and is loaded with the `java.util.Properties.load()`
3
+ ### [https://developer.android.com/reference/java/util/Properties#load(java.io.Reader)]
4
+ ### call by the termux app and must be formatted as per its spec.
5
+ ### To make changes to a property value, uncomment the property line by removing
6
+ ### any hash `#` characters at the start of the line.
7
+ ### After making required changes, save the file and run `termux-reload-settings`
8
+ ### in the terminal for changes to take effect. Some properties require app
9
+ ### process to be restarted to be updated which can be done by force stopping
10
+ ### the app from Android app settings.
11
+ ### All information here can also be found on the
12
+ ### wiki: https://wiki.termux.com/wiki/Terminal_Settings
13
+
14
+ ###############
15
+ # Extra keys
16
+ ###############
17
+
18
+ ### Settings for choosing which set of symbols to use for illustrating keys.
19
+ ### Choose between default, arrows-only, arrows-all, all and none
20
+ # extra-keys-style = default
21
+
22
+ ### Force capitalize all text in extra keys row button labels.
23
+ # extra-keys-text-all-caps = true
24
+
25
+ ### Default extra-key configuration
26
+ # extra-keys = [[ESC, TAB, CTRL, ALT, {key: '-', popup: '|'}, DOWN, UP]]
27
+
28
+ ### Two rows with more keys
29
+ # extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'], \
30
+ # ['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
31
+
32
+ ### Configuration with additional popup keys (swipe up from an extra key)
33
+ # extra-keys = [[ \
34
+ # {key: ESC, popup: {macro: "CTRL f d", display: "tmux exit"}}, \
35
+ # {key: CTRL, popup: {macro: "CTRL f BKSP", display: "tmux ←"}}, \
36
+ # {key: ALT, popup: {macro: "CTRL f TAB", display: "tmux β†’"}}, \
37
+ # {key: TAB, popup: {macro: "ALT a", display: A-a}}, \
38
+ # {key: LEFT, popup: HOME}, \
39
+ # {key: DOWN, popup: PGDN}, \
40
+ # {key: UP, popup: PGUP}, \
41
+ # {key: RIGHT, popup: END}, \
42
+ # {macro: "ALT j", display: A-j, popup: {macro: "ALT g", display: A-g}}, \
43
+ # {key: KEYBOARD, popup: {macro: "CTRL d", display: exit}} \
44
+ # ]]
45
+
46
+ ### Another configuration with advanced popup key usage designed for more
47
+ ### specific use-cases. In this case, it is designed for working with Vim-like
48
+ ### editors for faster navigation
49
+ #extra-keys = [ \
50
+ # [ \
51
+ # { key: ESC, popup: { macro: ":q\n", display: "QuickExit" } }, \
52
+ # { key: '/', popup: '\\\\' }, \
53
+ # { key: '-', popup: '_' }, \
54
+ # { key: HOME, popup: { macro: "CTRL HOME", display: "Top" } }, \
55
+ # { key: UP, popup: { macro: "CTRL UP", display: "UP" } }, \
56
+ # { key: END, popup: { macro: "CTRL END", display: "End" } }, \
57
+ # { key: ":", popup: ";" }, \
58
+ # { key: "(", popup: "{" } \
59
+ # ], \
60
+ # [ \
61
+ # { key: TAB, popup: { macro: ":wq\n", display: "Write And Exit" } }, \
62
+ # { key: CTRL, popup: { macro: ":w\n", display: "Write" } }, \
63
+ # ALT, \
64
+ # { key: LEFT, popup: { macro: "CTRL LEFT", display: "Left" } }, \
65
+ # { key: DOWN, popup: { macro: "CTRL DOWN", display: "Bottom" } }, \
66
+ # { key: RIGHT, popup: { macro: "CTRL RIGHT", display: "Right" } }, \
67
+ # { key: "#", popup: "$" }, \
68
+ # { key: ")", popup: "}" } \
69
+ # ] \
70
+ #]
71
+
72
+ ###############
73
+ # Bell key
74
+ ###############
75
+
76
+ ### Vibrate device (default).
77
+ # bell-character = vibrate
78
+
79
+ ### Beep with a sound.
80
+ # bell-character = beep
81
+
82
+ ### Ignore bell character.
83
+ # bell-character = ignore
84
+
85
+ ###############
86
+ # Back key
87
+ ###############
88
+
89
+ ### Send the Escape key.
90
+ # back-key=escape
91
+
92
+ ### Hide keyboard or leave app (default).
93
+ # back-key=back
@@ -0,0 +1,4 @@
1
+
2
+ f04822db1bef095cd3cce79208edec2e2386aaf2 {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-DrRd+ttd9PxOsCnHAXRM8VyagMbTjHRY5Cc96IsVolFgp8eDNtqCTeGl1rkifREedFNHFcvCCTNeAsK62lp0bA==","time":1788777478467,"size":2964}
3
+ 04e7d6cbfb34bd1a56826700ff1bc6057aa65bed {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-a7l5jMNoRdfDmu2vsMy7N53IoLNyGOeGwecq3Bc49x60aQLzersidO0HGM7DowU/1cOn7SULPq7MzS5RCF849A==","time":1788777651445,"size":8038}
4
+ c577aeade253eed159a2ff960b378f829f8f1d22 {"key":"pacote:tarball:file:/data/data/com.termux/files/home","integrity":"sha512-dULrj3uCWlv4aaIUmK7csV28jDVcwLxMOkPF2MhwUmm3Hx93gJDeH7u+3VCF50M4Mk1eXsMOUAleKV8PaTJGvQ==","time":1788777752810,"size":17183}
@@ -0,0 +1,17 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm pkg set name=wodn.js
8
+ 7 verbose argv "pkg" "set" "name=wodn.js"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_35_37_172Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_35_37_172Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 verbose cwd /data/data/com.termux/files/home
13
+ 12 verbose os Linux 4.19.113-27223811
14
+ 13 verbose node v26.3.1
15
+ 14 verbose npm v11.17.0
16
+ 15 verbose exit 0
17
+ 16 info ok
@@ -0,0 +1,17 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm pkg set bin.wodn.js=./index.js
8
+ 7 verbose argv "pkg" "set" "bin.wodn.js=./index.js"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_35_51_548Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_35_51_548Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 verbose cwd /data/data/com.termux/files/home
13
+ 12 verbose os Linux 4.19.113-27223811
14
+ 13 verbose node v26.3.1
15
+ 14 verbose npm v11.17.0
16
+ 15 verbose exit 0
17
+ 16 info ok
@@ -0,0 +1,46 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm login
8
+ 7 verbose argv "login"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_36_33_746Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_36_33_746Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 notice Log in on https://registry.npmjs.org/
13
+ 12 verbose web login before first POST
14
+ 13 notice npm tokens that bypass 2FA are being restricted for account changes and direct publishing. Learn how to prepare: https://gh.io/npm-gat-bypass2fa-deprecation
15
+ 14 http fetch POST 200 https://registry.npmjs.org/-/v1/login 469ms
16
+ 15 verbose web auth got response {
17
+ 15 verbose web auth loginUrl: 'https://www.npmjs.com/login?next=/login/cli/***',
18
+ 15 verbose web auth doneUrl: 'https://registry.npmjs.org/-/v1/done?sessionId=***'
19
+ 15 verbose web auth }
20
+ 16 verbose web auth opening url pair
21
+ 17 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 193ms
22
+ 18 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 179ms
23
+ 19 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 192ms
24
+ 20 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 228ms
25
+ 21 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 350ms
26
+ 22 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 180ms
27
+ 23 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 445ms
28
+ 24 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 181ms
29
+ 25 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 471ms
30
+ 26 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 171ms
31
+ 27 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 195ms
32
+ 28 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 207ms
33
+ 29 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 177ms
34
+ 30 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 306ms
35
+ 31 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 216ms
36
+ 32 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 179ms
37
+ 33 http fetch GET 202 https://registry.npmjs.org/-/v1/done?sessionId=*** 240ms
38
+ 34 http fetch GET 200 https://registry.npmjs.org/-/v1/done?sessionId=*** 230ms
39
+ 35 verbose web auth done-check finished
40
+ 36 info login Logged in on https://registry.npmjs.org/.
41
+ 37 verbose cwd /data/data/com.termux/files/home
42
+ 38 verbose os Linux 4.19.113-27223811
43
+ 39 verbose node v26.3.1
44
+ 40 verbose npm v11.17.0
45
+ 41 verbose exit 0
46
+ 42 info ok
@@ -0,0 +1,64 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm publish
8
+ 7 verbose argv "publish"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_37_56_737Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 verbose publish [ '.' ]
13
+ 12 silly packumentCache heap:1174405120 maxSize:293601280 maxEntrySize:146800640
14
+ 13 warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors.
15
+ 14 warn publish errors corrected:
16
+ 14 warn publish removed invalid "bin[wodn]"
17
+ 14 warn publish empty "bin" was removed
18
+ 15 notice
19
+ 16 notice πŸ“¦ wodn.js@1.0.0
20
+ 17 notice Tarball Contents
21
+ 18 notice 3.5kB .config/termux/termux.properties
22
+ 18 notice 1.3kB .npm/_logs/2026-09-07T10_35_24_442Z-debug-0.log
23
+ 18 notice 853B .npm/_logs/2026-09-07T10_35_37_172Z-debug-0.log
24
+ 18 notice 873B .npm/_logs/2026-09-07T10_35_51_548Z-debug-0.log
25
+ 18 notice 2.9kB .npm/_logs/2026-09-07T10_36_33_746Z-debug-0.log
26
+ 18 notice 767B .npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log
27
+ 18 notice 0B .npm/_update-notifier-last-checked
28
+ 18 notice 56B index.js
29
+ 18 notice 304B package.json
30
+ 19 notice Tarball Details
31
+ 20 notice name: wodn.js
32
+ 21 notice version: 1.0.0
33
+ 22 notice filename: wodn.js-1.0.0.tgz
34
+ 23 notice package size: 3.0 kB
35
+ 24 notice unpacked size: 10.5 kB
36
+ 25 notice shasum: 36b628043d30f30f74525c4c808b7f6f9fd291d0
37
+ 26 notice integrity: sha512-DrRd+ttd9PxOs[...]TNeAsK62lp0bA==
38
+ 27 notice total files: 9
39
+ 28 notice
40
+ 29 http fetch GET 404 https://registry.npmjs.org/wodn.js 463ms (cache skip)
41
+ 30 http fetch GET 404 https://registry.npmjs.org/wodn.js 254ms (cache skip)
42
+ 31 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
43
+ 32 http fetch PUT 403 https://registry.npmjs.org/wodn.js 286ms
44
+ 33 verbose stack HttpErrorGeneral: 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
45
+ 33 verbose stack at /data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:103:15
46
+ 33 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:104:5)
47
+ 33 verbose stack at async publish (/data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js:54:15)
48
+ 33 verbose stack at async otplease (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/utils/auth.js:8:12)
49
+ 33 verbose stack at async #publish (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:204:9)
50
+ 33 verbose stack at async Publish.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:51:5)
51
+ 33 verbose stack at async Npm.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/npm.js:193:9)
52
+ 33 verbose stack at async module.exports (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/cli/entry.js:67:5)
53
+ 34 verbose statusCode 403
54
+ 35 verbose pkgid wodn.js@1.0.0
55
+ 36 error code E403
56
+ 37 error 403 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
57
+ 38 error 403 In most cases, you or one of your dependencies are requesting a package version that is forbidden by your security policy, or on a server you do not have access to.
58
+ 39 verbose cwd /data/data/com.termux/files/home
59
+ 40 verbose os Linux 4.19.113-27223811
60
+ 41 verbose node v26.3.1
61
+ 42 verbose npm v11.17.0
62
+ 43 verbose exit 1
63
+ 44 verbose code 1
64
+ 45 error A complete log of this run can be found in: /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log
@@ -0,0 +1,18 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm config set //registry.npmjs.org/:_authToken=μƒˆλ‘œλ°œκΈ‰λ°›μ€ν† ν°
8
+ 7 verbose argv "config" "set" "//registry.npmjs.org/:_authToken=μƒˆλ‘œλ°œκΈ‰λ°›μ€ν† ν°"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_35_876Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_35_876Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 info config set "//registry.npmjs.org/:_authToken" "μƒˆλ‘œλ°œκΈ‰λ°›μ€ν† ν°"
13
+ 12 verbose cwd /data/data/com.termux/files/home
14
+ 13 verbose os Linux 4.19.113-27223811
15
+ 14 verbose node v26.3.1
16
+ 15 verbose npm v11.17.0
17
+ 16 verbose exit 0
18
+ 17 info ok
@@ -0,0 +1,18 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm config set //registry.npmjs.org/:_authToken=npm_***
8
+ 7 verbose argv "config" "set" "//registry.npmjs.org/:_authToken=npm_***"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_42_743Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_42_743Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 info config set "//registry.npmjs.org/:_authToken" "npm_***"
13
+ 12 verbose cwd /data/data/com.termux/files/home
14
+ 13 verbose os Linux 4.19.113-27223811
15
+ 14 verbose node v26.3.1
16
+ 15 verbose npm v11.17.0
17
+ 16 verbose exit 0
18
+ 17 info ok
@@ -0,0 +1,69 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm publish
8
+ 7 verbose argv "publish"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_49_825Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_49_825Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 verbose publish [ '.' ]
13
+ 12 silly packumentCache heap:1174405120 maxSize:293601280 maxEntrySize:146800640
14
+ 13 warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors.
15
+ 14 warn publish errors corrected:
16
+ 14 warn publish removed invalid "bin[wodn]"
17
+ 14 warn publish empty "bin" was removed
18
+ 15 notice
19
+ 16 notice πŸ“¦ wodn.js@1.0.0
20
+ 17 notice Tarball Contents
21
+ 18 notice 3.5kB .config/termux/termux.properties
22
+ 18 notice 3.0kB .npm/_cacache/content-v2/sha512/0e/b4/5dfadb5df4fc4eb029c701744cf15c9a80c6d38c7458e4273de88b15a25160a7c78336da824de1a5d6b9227d111e74534715cbc209335e02c2bada5a746c
23
+ 18 notice 247B .npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea
24
+ 18 notice 1.3kB .npm/_logs/2026-09-07T10_35_24_442Z-debug-0.log
25
+ 18 notice 853B .npm/_logs/2026-09-07T10_35_37_172Z-debug-0.log
26
+ 18 notice 873B .npm/_logs/2026-09-07T10_35_51_548Z-debug-0.log
27
+ 18 notice 2.9kB .npm/_logs/2026-09-07T10_36_33_746Z-debug-0.log
28
+ 18 notice 4.1kB .npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log
29
+ 18 notice 1.0kB .npm/_logs/2026-09-07T10_40_35_876Z-debug-0.log
30
+ 18 notice 979B .npm/_logs/2026-09-07T10_40_42_743Z-debug-0.log
31
+ 18 notice 767B .npm/_logs/2026-09-07T10_40_49_825Z-debug-0.log
32
+ 18 notice 0B .npm/_update-notifier-last-checked
33
+ 18 notice 56B index.js
34
+ 18 notice 304B package.json
35
+ 19 notice Tarball Details
36
+ 20 notice name: wodn.js
37
+ 21 notice version: 1.0.0
38
+ 22 notice filename: wodn.js-1.0.0.tgz
39
+ 23 notice package size: 8.0 kB
40
+ 24 notice unpacked size: 19.8 kB
41
+ 25 notice shasum: a2f4875539741adc0b021270dc6692f5e334585f
42
+ 26 notice integrity: sha512-a7l5jMNoRdfDm[...]q7MzS5RCF849A==
43
+ 27 notice total files: 14
44
+ 28 notice
45
+ 29 http fetch GET 404 https://registry.npmjs.org/wodn.js 236ms (cache skip)
46
+ 30 http fetch GET 404 https://registry.npmjs.org/wodn.js 47ms (cache skip)
47
+ 31 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
48
+ 32 http fetch PUT 403 https://registry.npmjs.org/wodn.js 516ms
49
+ 33 verbose stack HttpErrorGeneral: 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
50
+ 33 verbose stack at /data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:103:15
51
+ 33 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:104:5)
52
+ 33 verbose stack at async publish (/data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js:54:15)
53
+ 33 verbose stack at async otplease (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/utils/auth.js:8:12)
54
+ 33 verbose stack at async #publish (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:204:9)
55
+ 33 verbose stack at async Publish.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:51:5)
56
+ 33 verbose stack at async Npm.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/npm.js:193:9)
57
+ 33 verbose stack at async module.exports (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/cli/entry.js:67:5)
58
+ 34 verbose statusCode 403
59
+ 35 verbose pkgid wodn.js@1.0.0
60
+ 36 error code E403
61
+ 37 error 403 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
62
+ 38 error 403 In most cases, you or one of your dependencies are requesting a package version that is forbidden by your security policy, or on a server you do not have access to.
63
+ 39 verbose cwd /data/data/com.termux/files/home
64
+ 40 verbose os Linux 4.19.113-27223811
65
+ 41 verbose node v26.3.1
66
+ 42 verbose npm v11.17.0
67
+ 43 verbose exit 1
68
+ 44 verbose code 1
69
+ 45 error A complete log of this run can be found in: /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_40_49_825Z-debug-0.log
@@ -0,0 +1,18 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm config set //registry.npmjs.org/:_authToken=npm_***
8
+ 7 verbose argv "config" "set" "//registry.npmjs.org/:_authToken=npm_***"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_42_26_731Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_42_26_731Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 info config set "//registry.npmjs.org/:_authToken" "npm_***"
13
+ 12 verbose cwd /data/data/com.termux/files/home
14
+ 13 verbose os Linux 4.19.113-27223811
15
+ 14 verbose node v26.3.1
16
+ 15 verbose npm v11.17.0
17
+ 16 verbose exit 0
18
+ 17 info ok
@@ -0,0 +1,72 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm publish
8
+ 7 verbose argv "publish"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_42_30_016Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_42_30_016Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 verbose publish [ '.' ]
13
+ 12 silly packumentCache heap:1174405120 maxSize:293601280 maxEntrySize:146800640
14
+ 13 warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors.
15
+ 14 warn publish errors corrected:
16
+ 14 warn publish removed invalid "bin[wodn]"
17
+ 14 warn publish empty "bin" was removed
18
+ 15 notice
19
+ 16 notice πŸ“¦ wodn.js@1.0.0
20
+ 17 notice Tarball Contents
21
+ 18 notice 3.5kB .config/termux/termux.properties
22
+ 18 notice 3.0kB .npm/_cacache/content-v2/sha512/0e/b4/5dfadb5df4fc4eb029c701744cf15c9a80c6d38c7458e4273de88b15a25160a7c78336da824de1a5d6b9227d111e74534715cbc209335e02c2bada5a746c
23
+ 18 notice 8.0kB .npm/_cacache/content-v2/sha512/6b/b9/798cc36845d7c39aedafb0ccbb379dc8a0b37218e786c1e72adc1738f71eb46902f37abb2274ed0718cec3a3053fd5c3a7ed250b3eaecccd2e51085f38f4
24
+ 18 notice 494B .npm/_cacache/index-v5/e0/f3/563a92774ad5fa62edb9cbc4624c17a784676e377b3852d16ab8dcb28bea
25
+ 18 notice 1.3kB .npm/_logs/2026-09-07T10_35_24_442Z-debug-0.log
26
+ 18 notice 853B .npm/_logs/2026-09-07T10_35_37_172Z-debug-0.log
27
+ 18 notice 873B .npm/_logs/2026-09-07T10_35_51_548Z-debug-0.log
28
+ 18 notice 2.9kB .npm/_logs/2026-09-07T10_36_33_746Z-debug-0.log
29
+ 18 notice 4.1kB .npm/_logs/2026-09-07T10_37_56_737Z-debug-0.log
30
+ 18 notice 1.0kB .npm/_logs/2026-09-07T10_40_35_876Z-debug-0.log
31
+ 18 notice 979B .npm/_logs/2026-09-07T10_40_42_743Z-debug-0.log
32
+ 18 notice 4.6kB .npm/_logs/2026-09-07T10_40_49_825Z-debug-0.log
33
+ 18 notice 979B .npm/_logs/2026-09-07T10_42_26_731Z-debug-0.log
34
+ 18 notice 767B .npm/_logs/2026-09-07T10_42_30_016Z-debug-0.log
35
+ 18 notice 0B .npm/_update-notifier-last-checked
36
+ 18 notice 56B index.js
37
+ 18 notice 304B package.json
38
+ 19 notice Tarball Details
39
+ 20 notice name: wodn.js
40
+ 21 notice version: 1.0.0
41
+ 22 notice filename: wodn.js-1.0.0.tgz
42
+ 23 notice package size: 17.2 kB
43
+ 24 notice unpacked size: 33.7 kB
44
+ 25 notice shasum: 0220613e5233010ecdf809a075738b5f33c961a7
45
+ 26 notice integrity: sha512-dULrj3uCWlv4a[...]AleKV8PaTJGvQ==
46
+ 27 notice total files: 17
47
+ 28 notice
48
+ 29 http fetch GET 404 https://registry.npmjs.org/wodn.js 269ms (cache skip)
49
+ 30 http fetch GET 404 https://registry.npmjs.org/wodn.js 44ms (cache skip)
50
+ 31 notice Publishing to https://registry.npmjs.org/ with tag latest and default access
51
+ 32 http fetch PUT 403 https://registry.npmjs.org/wodn.js 445ms
52
+ 33 verbose stack HttpErrorGeneral: 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
53
+ 33 verbose stack at /data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js:103:15
54
+ 33 verbose stack at process.processTicksAndRejections (node:internal/process/task_queues:104:5)
55
+ 33 verbose stack at async publish (/data/data/com.termux/files/usr/lib/node_modules/npm/node_modules/libnpmpublish/lib/publish.js:54:15)
56
+ 33 verbose stack at async otplease (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/utils/auth.js:8:12)
57
+ 33 verbose stack at async #publish (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:204:9)
58
+ 33 verbose stack at async Publish.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/commands/publish.js:51:5)
59
+ 33 verbose stack at async Npm.exec (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/npm.js:193:9)
60
+ 33 verbose stack at async module.exports (/data/data/com.termux/files/usr/lib/node_modules/npm/lib/cli/entry.js:67:5)
61
+ 34 verbose statusCode 403
62
+ 35 verbose pkgid wodn.js@1.0.0
63
+ 36 error code E403
64
+ 37 error 403 403 Forbidden - PUT https://registry.npmjs.org/wodn.js - Two-factor authentication or granular access token with bypass 2fa enabled is required to publish packages.
65
+ 38 error 403 In most cases, you or one of your dependencies are requesting a package version that is forbidden by your security policy, or on a server you do not have access to.
66
+ 39 verbose cwd /data/data/com.termux/files/home
67
+ 40 verbose os Linux 4.19.113-27223811
68
+ 41 verbose node v26.3.1
69
+ 42 verbose npm v11.17.0
70
+ 43 verbose exit 1
71
+ 44 verbose code 1
72
+ 45 error A complete log of this run can be found in: /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_42_30_016Z-debug-0.log
@@ -0,0 +1,18 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm config set //registry.npmjs.org/:_authToken=npm_***
8
+ 7 verbose argv "config" "set" "//registry.npmjs.org/:_authToken=npm_***"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_43_21_626Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_43_21_626Z-debug-0.log
11
+ 10 silly logfile done cleaning log files
12
+ 11 info config set "//registry.npmjs.org/:_authToken" "npm_***"
13
+ 12 verbose cwd /data/data/com.termux/files/home
14
+ 13 verbose os Linux 4.19.113-27223811
15
+ 14 verbose node v26.3.1
16
+ 15 verbose npm v11.17.0
17
+ 16 verbose exit 0
18
+ 17 info ok
@@ -0,0 +1,14 @@
1
+ 0 verbose cli /data/data/com.termux/files/usr/bin/node /data/data/com.termux/files/usr/bin/npm
2
+ 1 info using npm@11.17.0
3
+ 2 info using node@v26.3.1
4
+ 3 silly config load:file:/data/data/com.termux/files/usr/lib/node_modules/npm/npmrc
5
+ 4 silly config load:file:/data/data/com.termux/files/home/.npmrc
6
+ 5 silly config load:file:/data/data/com.termux/files/usr/etc/npmrc
7
+ 6 verbose title npm publish
8
+ 7 verbose argv "publish"
9
+ 8 verbose logfile logs-max:10 dir:/data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_43_24_303Z-
10
+ 9 verbose logfile /data/data/com.termux/files/home/.npm/_logs/2026-09-07T10_43_24_303Z-debug-0.log
11
+ 10 silly logfile start cleaning logs, removing 1 files
12
+ 11 silly logfile done cleaning log files
13
+ 12 verbose publish [ '.' ]
14
+ 13 silly packumentCache heap:1174405120 maxSize:293601280 maxEntrySize:146800640
File without changes
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("wodn.js μ€€λΉ„ 쀑!");
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "wodn.js",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "type": "commonjs",
13
+ "bin": {
14
+ "wodn": {
15
+ "js": "./index.js"
16
+ }
17
+ }
18
+ }