UNPKG

velocid

Version:

Revolutionary high-performance distributed ID generator with military-grade security

75 lines (74 loc) 1.8 kB
{ "name": "velocid", "version": "0.0.2", "description": "Revolutionary high-performance distributed ID generator with military-grade security", "main": "dist/index.js", "module": "dist/index.esm.js", "umd": "dist/index.umd.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "rollup -c", "build:types": "tsc --emitDeclarationOnly", "test": "jest", "test:performance": "jest --testPathPattern=performance", "test:security": "jest --testPathPattern=security", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "prepublishOnly": "npm run build" }, "keywords": [ "id", "uuid", "ulid", "snowflake", "distributed", "high-performance", "secure", "typescript", "quantum", "velocid" ], "author": "velocid Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/eraxel-dev/velocid" }, "bugs": { "url": "https://github.com/eraxel-dev/velocid/issues" }, "homepage": "https://github.com/eraxel-dev/velocid", "engines": { "node": ">=14.0.0" }, "browser": { "crypto": false, "os": false }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "eslint": "^8.37.0", "jest": "^29.5.0", "prettier": "^2.8.7", "rollup": "^3.20.0", "@rollup/plugin-typescript": "^11.0.0", "rollup-plugin-terser": "^7.0.2", "ts-jest": "^29.1.0", "typescript": "^5.0.0" } }