Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

View file

@ -0,0 +1,35 @@
{
"name": "stable-hash-x",
"version": "0.2.0",
"type": "module",
"description": "Stable JS value hash.",
"repository": "https://github.com/un-ts/stable-hash-x",
"homepage": "https://github.com/un-ts/stable-hash-x#readme",
"author": "Shu Ding",
"maintainers": [
"JounQin <admin@1stg.me> (https://www.1stG.me)"
],
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"main": "./lib/index.cjs",
"types": "./lib/index.d.cts",
"module": "./lib/index.js",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"lib"
]
}