-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
{
"name": "root-documentation-plugins",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf \"packages/**/dist\" \"packages/**/.turbo\"",
"lint": "eslint packages --ext mjs,js,ts,tsx --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write \"packages/**/{src,scripts}/**/*.{mjs,ts,js}\"",
"test": "vitest run",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@favware/cliff-jumper": "^6.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.1",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-v8": "^3.0.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"turbo": "^2.4.0",
"typedoc": "^0.25.13",
"typescript": "~5.4.5",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"resolutions": {
"acorn": "^8.14.0",
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapphiredev/documentation-plugins.git"
},
"engines": {
"node": ">=18.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"
}
},
"packageManager": "[email protected]"
}