Initial commit: BigInt port of healpixjs
Some checks failed
npm-publish / publish (push) Failing after 2s

This commit is contained in:
2026-03-06 01:39:02 +00:00
commit dad67ff297
17 changed files with 1518 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "@gkucmierz/healpixjs-bigint",
"version": "1.0.0",
"description": "True BigInt port of healpixjs supporting orders beyond the 32-bit (<=14) limit",
"keywords": [
"healpix",
"astronomy",
"math",
"bigint",
"64-bit",
"3d",
"sphere",
"projection",
"geography",
"mapping",
"precision"
],
"files": [
"index.js",
"src/"
],
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://gitea.7u.pl/gkucmierz/healpixjs-bigint.git"
},
"author": "Grzegorz Kućmierz",
"license": "MIT"
}