dlinter-ts-react 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "dlinter-ts-react",
3
+ "version": "0.2.0",
4
+ "description": "Deterministic architecture governance for TypeScript + React projects: custom ESLint rules, architecture-concept presets, and pre-commit gate scaffolding.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Disble/dlinter-ts-react.git"
9
+ },
10
+ "homepage": "https://github.com/Disble/dlinter-ts-react#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/Disble/dlinter-ts-react/issues"
13
+ },
14
+ "type": "module",
15
+ "packageManager": "bun@1.3.14",
16
+ "engines": {
17
+ "node": ">=20.19.0"
18
+ },
19
+ "main": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs"
25
+ }
26
+ },
27
+ "bin": {
28
+ "dlinter": "./dist/cli/index.mjs"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "scripts": {
34
+ "build": "tsdown",
35
+ "typecheck": "tsc --noEmit",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "validate": "bun run typecheck && bun run test",
39
+ "e2e:pack": "node ./scripts/pack-e2e.mjs",
40
+ "prepublishOnly": "bun run validate && bun run build"
41
+ },
42
+ "keywords": [
43
+ "eslint",
44
+ "eslint-plugin",
45
+ "react",
46
+ "typescript",
47
+ "architecture",
48
+ "lint",
49
+ "lefthook",
50
+ "pre-commit"
51
+ ],
52
+ "peerDependencies": {
53
+ "eslint": ">=9",
54
+ "typescript": ">=5.0.0 <6.1.0"
55
+ },
56
+ "devDependencies": {
57
+ "@types/node": "^26.1.1",
58
+ "eslint": "^10.6.0",
59
+ "fallow": "^3.3.0",
60
+ "lefthook": "^2.1.10",
61
+ "tsdown": "^0.22.4",
62
+ "typescript": "6.0.3",
63
+ "vitest": "^4.1.10"
64
+ },
65
+ "dependencies": {
66
+ "@eslint/js": "^10.0.1",
67
+ "@typescript-eslint/eslint-plugin": "8.63.0",
68
+ "@typescript-eslint/parser": "8.63.0",
69
+ "eslint-import-resolver-typescript": "^4.4.5",
70
+ "eslint-plugin-check-file": "^3.3.1",
71
+ "eslint-plugin-import-x": "^4.17.1",
72
+ "eslint-plugin-jsdoc": "^63.0.13",
73
+ "eslint-plugin-react": "^7.37.5",
74
+ "eslint-plugin-react-doctor": "^0.7.4",
75
+ "eslint-plugin-react-hooks": "^7.1.1",
76
+ "eslint-plugin-sonarjs": "^4.1.0"
77
+ }
78
+ }