package.json

This commit is contained in:
2025-04-08 22:39:32 +03:00
parent 56be57ada1
commit 8d22fe9309
4 changed files with 179 additions and 13 deletions

View File

@ -1,18 +1,20 @@
{
"name": "iterable",
"name": "@sek1ro/iterables",
"version": "0.1.0",
"description": "",
"description": "A data structures library based on iterators, inspired by libstdc++",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/index.js --bundle --minify --outfile=dist/index.js",
"build": "esbuild src/index.js --bundle --minify --outfile=dist/index.js --format=esm",
"test": "vitest"
},
"keywords": [],
"author": "Vlad Litvinov <vlad@sek1.ro>",
"license": "ISC",
"license": "LGPL-3.0-only",
"type": "module",
"dependencies": {
"esbuild": "^0.25.2",
"vitest": "^3.1.1"
}
}
}