proper scrolls

This commit is contained in:
EatThePooh 2025-08-02 05:10:30 +07:00
parent d92bc3b437
commit 9df3f362fe
11 changed files with 146 additions and 36 deletions

View file

@ -0,0 +1,8 @@
{
"tasks": {
"start": "deno run --cached-only main.ts"
},
"patch": [
"../hjq"
]
}

15
shelf/deno/uses-hjq/deno.lock generated Normal file
View file

@ -0,0 +1,15 @@
{
"version": "4",
"specifiers": {
"npm:hjson@^3.2.2": "3.2.2",
"npm:jq-web@~0.6.2": "0.6.2"
},
"npm": {
"hjson@3.2.2": {
"integrity": "sha512-MkUeB0cTIlppeSsndgESkfFD21T2nXPRaBStLtf3cAYA2bVEFdXlodZB0TukwZiobPD1Ksax5DK4RTZeaXCI3Q=="
},
"jq-web@0.6.2": {
"integrity": "sha512-+7XvjBYwTx4vP5PYkf6Q6orubO/v+UgMU6By1GritrmShr9QpT3UKa4ANzXWQfhdqtBnQYXsm7ZNbdIHT6tYpQ=="
}
}
}

View file

@ -0,0 +1,3 @@
import {n} from 'hjq';
console.log("I use hjq:", n);

View file

@ -0,0 +1,3 @@
{
cache-command = "deno cache -I --reload main.ts";
}