qsu
Version:
qsu is a utility library that contains useful and frequently used functions. Start with your preferred language and the modern development environment.
94 lines (93 loc) • 2.18 kB
JSON
{
"name": "qsu",
"version": "1.10.1",
"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 && glob -c \"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",
"website",
"helper",
"array",
"string",
"date",
"math",
"verify",
"encrypt",
"decrypt",
"format",
"crypto",
"file"
],
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"dayjs": "^1.11.13",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-n": "^17.19.0",
"glob": "^11.0.2",
"globals": "^16.2.0",
"jiti": "^2.4.2",
"prettier": "^3.5.3",
"terser-glob": "^1.1.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0"
}
}