-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
74
75
76
77
{
"name": "@4lch4/backpack",
"displayName": "4lch4's Backpack",
"version": "1.3.3",
"description": "A collection of useful functions, constants, and more, for use in a variety of NodeJS packages/projects.",
"keywords": [
"Backpack"
],
"homepage": "https://github.com/4lch4/Backpack",
"bugs": {
"url": "https://github.com/4lch4/Backpack/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]/4lch4/Backpack.git"
},
"license": "MIT",
"author": {
"name": "4lch4",
"email": "[email protected]",
"url": "https://4lch4.com"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./elysia": "./dist/apis/Elysia.js",
"./constants": "./dist/constants/index.js",
"./io": "./dist/lib/io/index.js",
"./utils": "./dist/lib/utils/index.js",
"./vendors": "./dist/lib/Vendors.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"lint": "prettier -c .",
"prepublishOnly": "bun run build",
"pretty": "prettier --write ."
},
"dependencies": {
"@axiomhq/winston": "^1.0.0-rc.1",
"@sinclair/typebox": "^0.31.22",
"cli-table": "^0.3.11",
"dayjs": "^1.11.10",
"elysia": "^0.7.21",
"picocolors": "^1.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cli-table": "^0.3.3",
"@types/node": "^20.8.6",
"bun-types": "^1.0.6",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6",
"tsc-alias": "^1.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"bun": "^1.0.7",
"bun-types": "^1.0.6",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}