-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "@sushichan044/eslint-todo",
"repository": {
"type": "git",
"url": "https://github.com/sushichan044/eslint-todo.git"
},
"version": "0.0.1",
"type": "module",
"bin": {
"eslint-todo": "bin/eslint-todo.mjs"
},
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./eslint": {
"import": "./dist/eslint/index.mjs",
"types": "./dist/eslint/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint --max-warnings 0 .",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"eslint:inspect": "eslint --inspect-config",
"publish": "pnpm publish --no-git-checks",
"pkg-pr-new": "pkg-pr-new publish --compact --comment=update --pnpm",
"check": "pnpm run build && pnpm run lint && pnpm run format:ci && pnpm run typecheck && pnpm run test:run"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"dependencies": {
"citty": "0.1.6",
"comlink": "4.4.2",
"consola": "3.4.0",
"defu": "6.1.4",
"es-toolkit": "1.32.0",
"jiti": "2.4.2",
"magicast": "0.3.5",
"pathe": "2.0.3",
"valibot": "1.0.0-rc.1"
},
"devDependencies": {
"@eslint/config-inspector": "1.0.0",
"@types/node": "22.13.4",
"@virtual-live-lab/eslint-config": "2.2.17",
"@virtual-live-lab/prettier-config": "2.0.16",
"@virtual-live-lab/tsconfig": "2.1.17",
"@vitest/coverage-v8": "3.0.5",
"@vitest/eslint-plugin": "1.1.31",
"eslint": "9.20.1",
"eslint-flat-config-utils": "2.0.1",
"pkg-pr-new": "0.0.39",
"prettier": "3.5.1",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"unbuild": "3.3.1",
"vitest": "3.0.5"
},
"packageManager": "pnpm@10.2.1",
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^23.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}