generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
81 lines (81 loc) · 2.33 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
79
80
81
{
"name": "root-utilities",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"clean:full": "node scripts/clean-full.mjs",
"lint": "eslint packages --ext mjs,js,ts,tsx --fix",
"format": "prettier --ignore-path=.prettierignore --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"test": "vitest run",
"build": "yarn workspace @sapphire/node-utilities build && turbo run build",
"build:check-subpath": "turbo run build:check-subpath",
"build:dynamic-side-effects": "turbo run build:dynamic-side-effects",
"docs": "turbo run docs",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update",
"gen-index": "turbo run gen-index",
"au:twemojis": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/twemoji-regex-updater.mts"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@discordjs/collection": "^1.5.3",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@favware/rollup-type-bundler": "^3.3.0",
"@sapphire/framework": "^5.3.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.7",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.4",
"concurrently": "^9.0.1",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "0.37.100",
"discord.js": "^14.16.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"msw": "^2.6.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"typedoc": "^0.25.13",
"typedoc-json-parser": "^10.1.6",
"typescript": "~5.4.5",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/utilities.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "[email protected]"
}