-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "gulp-plugins",
"type": "module",
"private": true,
"packageManager": "pnpm@9.12.3",
"scripts": {
"build": "turbo run --filter=\"./packages/*\" --parallel build",
"clean": "rimraf packages/*/dist packages/*/*.tsbuildinfo",
"coverage": "vitest --coverage",
"dev": "pnpm run --filter=\"./packages/*\" --parallel dev",
"lint": "eslint .",
"prepare": "husky",
"publish": "pnpm build && changeset publish",
"test": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.lib.json"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@ntnyq/eslint-config": "^3.2.0",
"@ntnyq/prettier-config": "^1.21.3",
"@types/vinyl": "^2.0.12",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"nano-staged": "^0.8.0",
"pnpm": "^9.12.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vinyl": "^3.0.0",
"vitest": "^2.1.4"
},
"prettier": "@ntnyq/prettier-config",
"nano-staged": {
"*.{js,ts,mjs,cjs,json,yml,md,yaml}": "eslint --fix"
}
}