-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.22 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@amamo/oxlint-config",
"version": "1.1.1",
"description": "Opinionated, composable Oxlint presets.",
"homepage": "https://jikkai.github.io/oxlint-config/",
"license": "MIT",
"author": "白熱 <sonne@asaki.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/jikkai/oxlint-config.git"
},
"bin": {
"amamo-oxlint-config": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"README-zh.md",
"LICENSE"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "simple-git-hooks",
"release": "verso",
"build": "tsc -p tsconfig.build.json",
"check": "pnpm check:static && pnpm test",
"check:static": "oxfmt --check . && oxlint . && tsc -p tsconfig.json --noEmit",
"test": "pnpm build && vitest run --dir src --testTimeout 15000",
"docs:build": "pnpm build && pnpm --filter @amamo/oxlint-config-docs build",
"docs:dev": "pnpm build && pnpm --filter @amamo/oxlint-config-docs dev"
},
"dependencies": {
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@amamo/verso": "1.2.0",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@types/node": "^26.4.0",
"eslint-plugin-cypress": "^7.0.1",
"eslint-plugin-mocha": "^12.0.2",
"eslint-plugin-playwright": "^2.11.0",
"eslint-plugin-regexp": "^3.2.0",
"eslint-plugin-sonarjs": "^4.2.0",
"eslint-plugin-storybook": "^10.5.10",
"eslint-plugin-testing-library": "^7.16.2",
"lint-staged": "^17.4.1",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tailwindcss": "^1.10.2",
"oxlint-tsgolint": "^7.0.2001",
"semver": "^7.8.5",
"simple-git-hooks": "^2.14.0",
"storybook": "^10.5.10",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
},
"peerDependencies": {
"eslint-plugin-cypress": "^7.0.0",
"eslint-plugin-mocha": "^12.0.2",
"eslint-plugin-playwright": "^2.11.0",
"eslint-plugin-regexp": "^3.1.1",
"eslint-plugin-sonarjs": "^4.2.0",
"eslint-plugin-storybook": "^10.5.7",
"eslint-plugin-testing-library": "^7.16.2",
"oxfmt": ">=0.1.0 <1.0.0",
"oxlint": ">=1.80.0 <2.0.0",
"oxlint-tailwindcss": "^1.7.1",
"oxlint-tsgolint": "^7.0.2001"
},
"peerDependenciesMeta": {
"eslint-plugin-cypress": {
"optional": true
},
"eslint-plugin-mocha": {
"optional": true
},
"eslint-plugin-playwright": {
"optional": true
},
"eslint-plugin-regexp": {
"optional": true
},
"eslint-plugin-sonarjs": {
"optional": true
},
"eslint-plugin-storybook": {
"optional": true
},
"eslint-plugin-testing-library": {
"optional": true
},
"oxlint-tailwindcss": {
"optional": true
},
"oxlint-tsgolint": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "oxfmt --check --no-error-on-unmatched-pattern",
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": "oxlint --no-error-on-unmatched-pattern"
},
"engines": {
"node": ">=22.18"
},
"packageManager": "pnpm@12.1.0"
}