56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "@sapphire/snowflake",
|
|
"version": "3.1.0",
|
|
"description": "Deconstructs and generates snoflake IDs using BigInts",
|
|
"author": "@sapphire",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"browser": "dist/index.global.js",
|
|
"unpkg": "dist/index.global.js",
|
|
"types": "dist/index.d.ts",
|
|
"typedocMain": "src/index.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"sideEffects": false,
|
|
"homepage": "https://github.com/sapphiredev/utilities/tree/main/packages/snowflake",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
|
|
"build": "tsup && tsc -b src",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sapphiredev/utilities.git",
|
|
"directory": "packages/snowflake"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/*.tsbuildinfo"
|
|
],
|
|
"engines": {
|
|
"node": ">=v14.0.0",
|
|
"npm": ">=7.0.0"
|
|
},
|
|
"keywords": [
|
|
"@sapphire/snowflake",
|
|
"bot",
|
|
"typescript",
|
|
"ts",
|
|
"yarn",
|
|
"discord",
|
|
"sapphire",
|
|
"standalone"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/sapphiredev/utilities/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHead": "ef79bbcf6ca4c4941cc60f32e211d0b138eef572"
|
|
}
|