qsu
Version:
qsu is a utility library that contains useful and frequently used functions. Start with your preferred language and the modern development environment.
91 lines (90 loc) • 2.1 kB
JSON
{
"name": "qsu",
"version": "1.12.2",
"description": "qsu is a utility library that contains useful and frequently used functions. Start with your preferred language and the modern development environment.",
"author": "CDGet <jooy2.contact@gmail.com>",
"license": "MIT",
"homepage": "https://qsu.cdget.com",
"repository": {
"type": "git",
"url": "https://github.com/jooy2/qsu.git"
},
"bugs": {
"url": "https://github.com/jooy2/qsu/issues"
},
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.prod.json && npm run minify",
"test": "npm run build && node --import tsx --test \"./test/**/*.test.ts\"",
"lint": "eslint . --ext .js,.ts .",
"lint:fix": "eslint . --ext .js,.ts --fix .",
"minify": "terser-glob 'dist/**/*.js' --config-file terser.config.json",
"prepare": "npm run build",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types/global.d.ts",
"module": "./dist/types/global.js",
"default": "./dist/types/global.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"module": "./dist/node/index.js",
"default": "./dist/node/index.js"
}
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/index.d.ts"
]
}
},
"keywords": [
"util",
"utility",
"tool",
"toolkit",
"underscore",
"web",
"helper",
"array",
"string",
"date",
"math",
"verify",
"encrypt",
"decrypt",
"format",
"crypto",
"file"
],
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.9.2",
"@typescript-eslint/parser": "^8.60.1",
"dayjs": "^1.11.21",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^18.0.1",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"prettier": "^3.8.3",
"terser-glob": "^1.2.1",
"tsx": "^4.22.4",
"typescript": "6.0.3",
"typescript-eslint": "^8.60.1"
}
}