generated from sapphiredev/sapphire-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
82
83
84
{
"name": "root-esbuild-plugins",
"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 --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"test": "vitest run",
"build": "turbo run build",
"update": "yarn upgrade-interactive",
"postinstall": "husky install .github/husky",
"check-update": "turbo run check-update",
"create-package": "node packages/create-package/src/packageScript.mjs",
"cp": "yarn create-package"
},
"dependencies": {
"tslib": "^2.5.0"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@favware/cliff-jumper": "^2.0.0",
"@favware/npm-deprecate": "^1.0.7",
"@favware/rollup-type-bundler": "^2.0.0",
"@sapphire/eslint-config": "^4.4.1",
"@sapphire/node-utilities": "^1.0.0",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^4.0.0",
"@types/fs-extra": "^11",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/coverage-c8": "^0.31.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"pinst": "^3.0.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"standard-version": "^9.5.0",
"tslib": "^2.5.2",
"tsup": "^6.7.0",
"turbo": "^1.9.9",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vitest": "^0.31.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedStars071/esbuild-plugins.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "[email protected]"
}