onenex-snowflake
Version:
Library to help you create a Snowflake Id or parse the same. This solves the problem of generating unique identifiers at scale by Onenex.
41 lines • 1.09 kB
JSON
{
"name": "onenex-snowflake",
"version": "0.0.7",
"description": "Library to help you create a Snowflake Id or parse the same. This solves the problem of generating unique identifiers at scale by Onenex.",
"main": "./dist/index.js",
"keywords": [
"snowflake",
"id-generation",
"onenex"
],
"author": "Khant Naing Set",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"jest": {
"verbose": true,
"transformIgnorePatterns": [
"/node_modules/",
"\\.js$",
"\\.mjs$"
]
},
"scripts": {
"test": "pnpm exec jest",
"build": "pnpm exec tsc",
"eslint": "npx eslint . --fix",
"prettier": "npx prettier . --check --write",
"lint": "pnpm exec npm-run-all --parallel eslint prettier"
}
}