-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.57 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@wolfstar/ring",
"version": "1.0.0",
"private": true,
"description": "Private centralized management android for the WolfStar Network",
"license": "Apache-2.0",
"author": "WolfStar Project <contact@wolfstar.rocks>",
"type": "module",
"main": "dist/main.mjs",
"imports": {
"#api/*": "./dist/api/*.mjs",
"#common/*": "./dist/lib/common/*.mjs",
"#generated/prisma": "./dist/generated/prisma/client.mjs",
"#lib/*": "./dist/lib/*.mjs",
"#types": "./dist/lib/types/index.mjs",
"#types/*": "./dist/lib/types/*.mjs"
},
"scripts": {
"build": "tsdown",
"dev": "pnpm build --onSuccess \"pnpm start\"",
"watch": "pnpm build --watch",
"watch:start": "pnpm build --onSuccess \"pnpm start\"",
"prisma:generate": "pnpm prisma generate",
"clean": "node scripts/build/clean.mjs",
"start": "node --enable-source-maps dist/main.mjs",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix && oxfmt",
"prepare": "node .husky/install.mjs || true",
"update:interactive": "taze"
},
"dependencies": {
"@discordjs/builders": "^1.14.1",
"@discordjs/collection": "^2.1.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sapphire/result": "^2.8.0",
"@sapphire/utilities": "^3.18.2",
"@wolfstar/env-utilities": "^2.0.2",
"@wolfstar/http-framework": "^2.2.2",
"@wolfstar/http-framework-i18n": "^1.2.2",
"@wolfstar/logger": "^2.0.5",
"@wolfstar/shared-http-pieces": "^1.2.4",
"@wolfstar/start-banner": "^2.0.3",
"discord-api-types": "^0.38.47",
"fastify": "^5.8.5",
"gradient-string": "^3.0.0",
"husky": "^9.1.7",
"ioredis": "^5.11.1",
"nano-staged": "^1.0.2",
"tslib": "^2.8.1",
"untun": "^0.1.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@rollup/plugin-alias": "^6.0.0",
"@sapphire/ts-config": "^5.0.3",
"@types/gradient-string": "^1.1.6",
"@types/node": "^24.13.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.5.0",
"eslint-plugin-regexp": "^3.1.0",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"prisma": "^7.8.0",
"taze": "^19.14.1",
"tsdown": "^0.22.3",
"typescript": "~5.9.3"
},
"nano-staged": {
"*.{js,ts,mjs,cjs}": [
"pnpm oxlint --fix"
],
"*.{js,ts,mjs,cjs,json,yml,md}": [
"pnpm oxfmt"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10"
},
"packageManager": "pnpm@11.8.0"
}