-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.12 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.12 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
{
"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": "turbo run build",
"docs": "turbo run docs",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update",
"check-subpath": "turbo run check-subpath"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@discordjs/collection": "^1.5.3",
"@favware/cliff-jumper": "^2.2.3",
"@favware/npm-deprecate": "^1.0.7",
"@favware/rollup-type-bundler": "^3.2.1",
"@sapphire/framework": "^5.0.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.37.66",
"discord.js": "^14.14.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"lint-staged": "^15.2.0",
"lodash": "^4.17.21",
"msw": "^2.0.11",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"turbo": "^1.11.2",
"typedoc-json-parser": "^9.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.0.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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^6.0.1",
"minimist": "^1.2.8"
},
"packageManager": "yarn@4.0.2"
}