feat(List)

This commit is contained in:
2025-04-08 21:08:25 +03:00
commit 56be57ada1
12 changed files with 1942 additions and 0 deletions

18
package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "iterable",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.js --bundle --minify --outfile=dist/index.js",
"test": "vitest"
},
"keywords": [],
"author": "Vlad Litvinov <vlad@sek1.ro>",
"license": "ISC",
"type": "module",
"dependencies": {
"esbuild": "^0.25.2",
"vitest": "^3.1.1"
}
}