-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "@dephub/eslint-ts",
"type": "module",
"version": "1.0.2",
"description": "Opinionated modern ESLint configuration for JavaScript and TypeScript projects.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"prepublishOnly": "pnpm clean && pnpm check-types && pnpm build && pnpm lint",
"release": "pnpm publish",
"docs": "lineo md 'src/**/*.ts' --outFile code.md --outDir temp",
"check-types": "tsc --noEmit",
"lint": "eslint . --fix --max-warnings 0",
"fmt": "prettier --write .",
"clean": "rm -rf dist",
"build": "vite build",
"dev": "vite build -w"
},
"keywords": [
"eslint-ts",
"lint",
"eslint",
"eslint-config",
"typescript",
"ts",
"config",
"preset",
"linter",
"code-quality"
],
"author": {
"name": "Estarlin R",
"email": "dev@estarlincito.com",
"url": "https://estarlincito.com"
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"license": "MIT",
"homepage": "https://github.com/dephub-js/eslint-ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/dephub-js/eslint-ts.git"
},
"bugs": {
"url": "https://github.com/dephub-js/eslint-ts/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@dephub/eslint-js": "^1.0.1",
"@types/eslint": "^9.6.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"typescript-eslint": "^8.56.1"
},
"devDependencies": {
"@dephub/glob": "^1.0.1",
"@dephub/path": "^1.0.1",
"@types/node": "^25.3.2",
"typescript": "^5.9.3",
"prettier": "^3.8.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"packageManager": "pnpm@10.30.3"
}