-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.65 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "qsu",
"version": "1.5.0",
"description": "QSU is a lightweight and simple module with a variety of built-in utility functions that you can utilize in your NodeJS projects.",
"author": "Jooy2 <[email protected]>",
"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": "npm run format:fix && tsc --project tsconfig.prod.json && npm run minify",
"test": "npm run build && glob -c \"tsx --test\" \"./test/**/*.test.ts\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"minify": "terser dist/index.js --config-file .terserrc -o dist/index.js",
"prepare": "npm run build",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"index.d.ts": [
"dist/index.d.ts"
]
}
},
"keywords": [
"util",
"utility",
"tool",
"underscore",
"website",
"helper",
"array",
"string",
"date",
"math",
"verify",
"encrypt",
"decrypt",
"format",
"file"
],
"devDependencies": {
"@types/node": "22.8.4",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"dayjs": "^1.11.13",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"terser": "^5.36.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}