forked from eslint-stylistic/eslint-stylistic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.9 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@eslint-stylistic/monorepo",
"type": "module",
"version": "1.6.1",
"private": true,
"packageManager": "pnpm@8.15.2",
"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/update.ts && pnpm run lint --fix",
"release": "bumpp -r",
"publish:ci": "esno scripts/publish.ts",
"test": "vitest -c vitest.config.unit.ts",
"test:fixtures": "vitest -c vitest.config.fixtures.ts",
"check": "pnpm run build && pnpm run update && pnpm run typecheck && pnpm run test --run",
"typecheck": "vue-tsc --noEmit",
"prepare": "simple-git-hooks",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"play:lint": "pnpm -C playground run lint"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@antfu/eslint-define-config": "1.23.0-2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@iconify-json/carbon": "^1.1.30",
"@iconify-json/ri": "^1.1.19",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@shikijs/twoslash": "^1.1.2",
"@shikijs/vitepress-twoslash": "^1.1.2",
"@stylistic/eslint-plugin": "workspace:*",
"@stylistic/eslint-plugin-js": "workspace:*",
"@stylistic/eslint-plugin-migrate": "workspace:*",
"@stylistic/eslint-plugin-plus": "workspace:*",
"@stylistic/eslint-plugin-ts": "workspace:*",
"@types/eslint": "^8.56.2",
"@types/estraverse": "^5.1.7",
"@types/estree": "^1.0.5",
"@types/fs-extra": "^11.0.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.11.17",
"@types/semver": "^7.5.7",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/utils": "^6.21.0",
"@vitest/coverage-v8": "^1.2.2",
"bumpp": "^9.3.0",
"change-case": "^5.4.2",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"esno": "^4.0.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jiti": "^1.21.0",
"json-schema": "^0.4.0",
"json-schema-to-typescript": "^13.1.2",
"lint-staged": "^15.2.2",
"pnpm": "^8.15.2",
"rimraf": "^5.0.5",
"rollup": "^4.10.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"semver": "^7.6.0",
"shiki": "^1.1.2",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.3",
"twoslash-eslint": "^0.2.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.1.1",
"vitest": "^1.2.2",
"vue": "^3.4.19",
"vue-tsc": "^1.8.27"
},
"pnpm": {
"patchedDependencies": {
"twoslash-eslint@0.2.2": "patches/twoslash-eslint@0.2.2.patch"
}
},
"resolutions": {
"rollup": "^4.10.0",
"vite": "^5.1.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}