-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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
{
"name": "@uwu-codes/utils",
"version": "1.3.4",
"description": "General utilities I use.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc && npm run fix-js && echo Build Finished",
"fix-js": "sed -i '/export \\* from \".\\/types.js\";/d' dist/index.js && cp lib/types.d.ts dist"
},
"author": "Donovan_DMC",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/UWUCode/Utils.git"
},
"bugs": {
"url": "https://github.com/UWUCode/Utils/issues"
},
"homepage": "https://github.com/UWUCode/Utils#readme",
"devDependencies": {
"@types/chunk": "*",
"@types/dot-object": "^2.1.2",
"@types/json5": "^0.0.30",
"@types/ms": "^0.7.31",
"@types/node": "^18.15.3",
"@types/yargs": "^17.0.22",
"@uwu-codes/eslint-config": "^1.1.21",
"@uwu-codes/tsconfig": "^1.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/ioredis": "^4.28.10",
"@uwu-codes/types": "^1.0.12",
"chunk": "^0.0.3",
"dot-object": "^2.1.4",
"ioredis": "^5.3.1",
"json5": "^2.2.3",
"ms": "^2.1.3",
"string-argv": "^0.3.1",
"tsafe": "^1.6.0",
"yargs": "^17.7.1"
},
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=19.x",
"npm": ">=8.x"
},
"os": [
"linux",
"win32"
],
"engineStrict": true,
"type": "module",
"bin": {
"build-date": "./bin/build-date.mjs"
}
}