forked from eslint-stylistic/eslint-stylistic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.63 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
{
"name": "@eslint-stylistic/monorepo",
"type": "module",
"version": "1.5.1",
"private": true,
"packageManager": "pnpm@8.11.0",
"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 && 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.3.4",
"@antfu/eslint-define-config": "1.23.0-2",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.6",
"@iconify-json/carbon": "^1.1.24",
"@iconify-json/ri": "^1.1.15",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@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.44.8",
"@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.10.3",
"@types/semver": "^7.5.6",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/utils": "^6.13.2",
"@vitest/coverage-v8": "^1.0.1",
"bumpp": "^9.2.0",
"change-case": "^5.2.0",
"eslint": "^8.55.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.1",
"lint-staged": "^15.2.0",
"pnpm": "^8.11.0",
"rimraf": "^5.0.5",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"semver": "^7.5.4",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.0",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vite": "^5.0.5",
"vitest": "^1.0.1",
"vue": "^3.3.10",
"vue-tsc": "^1.8.24"
},
"resolutions": {
"rollup": "^4.6.1",
"vite": "^5.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}