This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
generated from snowcrystals/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.93 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
78
{
"name": "@snowcrystals/highway",
"version": "1.1.4",
"description": "Building API routes has never been easier 🛣️",
"author": "ijsKoud <github@ijskoud.dev>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"imports": {
"#types/*": "dist/lib/types/*",
"#structures/*": "dist/lib/structures/*",
"#handlers/*": "dist/lib/handlers/*"
},
"files": [
"dist/"
],
"homepage": "https://github.com/snowcrystals/highway",
"scripts": {
"build": "tsup src",
"build:watch": "tsc --watch",
"start:dev": "nodemon ./dist",
"start": "node ./dist",
"lint": "eslint src",
"postinstall": "is-ci || husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"bump": "cliff-jumper",
"docs": "typedoc-json-parser",
"test": "vitest run"
},
"resolutions": {
"load-tsconfig": "^0.2.5"
},
"devDependencies": {
"@favware/cliff-jumper": "^2.2.3",
"@sapphire/eslint-config": "^5.0.3",
"@sapphire/ts-config": "^5.0.0",
"@snowcrystals/prettier-config": "^1.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typedoc": "^0.25.11",
"typedoc-json-parser": "^9.0.1",
"typescript": "5.4.2",
"vitest": "^1.3.1"
},
"dependencies": {
"@discordjs/collection": "^2.0.0",
"express": "^4.18.3",
"express-rate-limit": "^7.2.0",
"glob": "^10.3.10"
},
"engines": {
"node": ">= v18.16.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.1.1"
}