Update to NPM version

This commit is contained in:
Lucas Patenaude
2024-04-11 04:23:19 -06:00
parent 886d197fa7
commit 6d6ef4f257
8225 changed files with 863748 additions and 1 deletions

41
ProjectSourceCode/node_modules/hexoid/package.json generated vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "hexoid",
"version": "1.0.0",
"repository": "lukeed/hexoid",
"description": "A tiny (190B) and extremely fast utility to generate random IDs of fixed length",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "hexoid.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "https://lukeed.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "bundt",
"pretest": "npm run build",
"test": "tape -r esm test/*.js | tap-spec"
},
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"id",
"uid",
"uuid",
"random",
"generate"
],
"devDependencies": {
"bundt": "1.0.0",
"esm": "3.2.25",
"tap-spec": "5.0.0",
"tape": "4.9.1"
}
}