forked from eslint-stylistic/eslint-stylistic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "@eslint-stylistic/monorepo",
"type": "module",
"version": "0.1.1",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --parallel run dev",
"stub": "pnpm -r --parallel run stub",
"lint": "eslint . --cache",
"update": "esno scripts/prepare.ts",
"release": "bumpp -r && pnpm -r publish --access public",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.27",
"@antfu/ni": "^0.21.8",
"@antfu/utils": "^0.7.6",
"@rollup/plugin-commonjs": "^25.0.7",
"@stylistic/eslint-plugin-js": "workspace:*",
"@stylistic/eslint-plugin-migrate": "workspace:*",
"@stylistic/eslint-plugin-ts": "workspace:*",
"@types/eslint": "^8.44.6",
"@types/fs-extra": "^11.0.3",
"@types/json-schema": "^7.0.14",
"@types/node": "^20.8.7",
"bumpp": "^9.2.0",
"change-case": "^5.1.2",
"eslint": "^8.52.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"json-schema": "^0.4.0",
"json-schema-to-typescript": "^13.1.1",
"lint-staged": "^15.0.2",
"pnpm": "^8.9.2",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-esbuild": "^6.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue": "^3.3.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}