-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "node scripts/clean.mjs",
"clean:full": "node scripts/clean-full.mjs",
"docs": "turbo run docs",
"lint": "eslint packages --ext mjs,js,ts --fix",
"format": "prettier --write \"packages/**/{src,tests}/**/*.{mjs,js,ts}\"",
"test": "vitest run",
"build": "turbo run build",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@favware/cliff-jumper": "^3.0.3",
"@favware/colorette-spinner": "^1.0.1",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/ts-config": "^5.0.1",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.3",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.6",
"turbo": "^2.4.2",
"typescript": "^5.7.3",
"vitest": "^1.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josh-development/utilities.git"
},
"engines": {
"node": ">=20",
"npm": ">=7.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"packageManager": "[email protected]"
}