UNPKG

tiny-essentials

Version:

Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.

111 lines (110 loc) 4.18 kB
{ "name": "tiny-essentials", "version": "1.11.0", "description": "Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.", "scripts": { "test": "npm run test:mjs && npm run test:cjs && npm run test:js", "test:js": "npx babel-node test/index.js", "test:cjs": "node test/index.cjs", "test:mjs": "node test/index.mjs", "test:mjs:promisequeue": "node test/index.mjs promiseQueue", "test:mjs:objtype": "node test/index.mjs objType", "test:mjs:jsoncolor": "node test/index.mjs colorStringify", "test:mjs:ratelimit": "node test/index.mjs rateLimit", "test:mjs:levelup": "node test/index.mjs levelUp", "fix:prettier": "npm run fix:prettier:src && npm run fix:prettier:test && npm run fix:prettier:rollup.config && npm run fix:prettier:webpack.config", "fix:prettier:src": "prettier --write ./src/*", "fix:prettier:test": "prettier --write ./test/*", "fix:prettier:rollup.config": "prettier --write ./rollup.config.mjs", "fix:prettier:webpack.config": "prettier --write ./webpack.config.mjs", "auto-build": "npm run build", "build": "npm run build:js && npm run build:css", "build:js": "tsc -p tsconfig.json && rollup -c && webpack --mode production", "build-clean": "npm run clean && npm run build", "build-dist": "npm run build", "build:css": "npm run build:css:aimaker && npm run build:css:tinynotify", "build:css:aimaker": "sass src/v1/scss/aiMarker.scss dist/v1/css/aiMarker.css --no-source-map && sass src/v1/scss/aiMarker.scss dist/v1/css/aiMarker.min.css --no-source-map --style=compressed", "build:css:tinynotify": "sass src/v1/scss/TinyNotify.scss dist/v1/css/TinyNotify.css --no-source-map && sass src/v1/scss/TinyNotify.scss dist/v1/css/TinyNotify.min.css --no-source-map --style=compressed", "clean": "rm -rf dist", "prepublishOnly": "npm run build" }, "main": "./dist/v1/index.cjs", "module": "./dist/v1/index.mjs", "types": "./dist/v1/index.d.mts", "ethereum": "jasmindreasond.x", "exports": { ".": { "require": "./dist/v1/index.cjs", "import": "./dist/v1/index.mjs" } }, "repository": { "type": "git", "url": "git+https://github.com/JasminDreasond/Tiny-Essentials.git" }, "keywords": [ "@tinypudding/firebase-lib", "@tinypudding/discord-oauth2", "@tinypudding/mysql-connector", "@tinypudding/puddy-lib", "clock", "obj-type", "simple-math", "text", "lib", "time", "shuffle-array", "json-color", "terminal-color", "cli-output", "colorize-json", "pretty-print-json" ], "author": "Yasmin Seidel (Jasmin Dreasond)", "license": "GPL-3.0-only", "bugs": { "url": "https://github.com/JasminDreasond/Tiny-Essentials/issues" }, "homepage": "https://github.com/JasminDreasond/Tiny-Essentials#readme", "devDependencies": { "@babel/cli": "^7.27.0", "@babel/core": "^7.26.10", "@babel/node": "^7.26.0", "@babel/preset-env": "^7.26.9", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-typescript": "^12.1.2", "@types/lodash": "^4.17.16", "@types/md5": "^2.3.5", "@types/node-fetch": "^2.6.12", "@types/tinycolor2": "^1.4.6", "babel-preset-es2015": "^6.24.1", "byte-length": "^1.0.2", "clone": "^2.1.2", "compare-versions": "^6.1.1", "express": "^5.1.0", "firebase": "^11.7.1", "firebase-functions": "^6.3.2", "latest-version": "^9.0.0", "lodash": "^4.17.21", "md5": "^2.3.0", "moment": "^2.30.1", "moment-timezone": "^0.5.48", "mysql": "^2.18.1", "node-fetch": "^2.7.0", "node-polyfill-webpack-plugin": "^4.1.0", "object-hash": "^3.0.0", "prettier": "3.5.3", "rollup": "^4.40.0", "rollup-preserve-directives": "^1.1.3", "safe-stable-stringify": "^2.5.0", "sass": "^1.87.0", "tinycolor2": "^1.6.0", "tslib": "^2.8.1", "type-fest": "^4.40.0", "typescript": "^5.8.3", "webpack": "^5.99.6", "webpack-cli": "^6.0.1" } }