|
12 | 12 | "main": "lib/index.js",
|
13 | 13 | "exports": {
|
14 | 14 | ".": "./lib/index.js",
|
15 |
| - "./config/*": "./config/*", |
16 | 15 | "./package.json": "./package.json",
|
17 | 16 | "./*": "./lib/*"
|
18 | 17 | },
|
19 | 18 | "files": [
|
20 |
| - "config", |
21 |
| - "lib" |
| 19 | + "lib", |
| 20 | + "!lib/*.tsbuildinfo" |
22 | 21 | ],
|
23 | 22 | "keywords": [
|
24 | 23 | "eslint",
|
|
31 | 30 | "export"
|
32 | 31 | ],
|
33 | 32 | "scripts": {
|
34 |
| - "build": "babel --quiet --out-dir lib src", |
| 33 | + "build": "rimraf lib && tsc -p src", |
35 | 34 | "lint": "yarn lint:es && yarn update:eslint-docs --check",
|
36 | 35 | "lint:es": "eslint . --cache",
|
37 |
| - "prebuild": "rimraf lib", |
| 36 | + "prepare": "patch-package", |
38 | 37 | "release": "changeset publish",
|
39 | 38 | "test": "jest",
|
| 39 | + "test-compiled": "yarn build && cross-env TEST_COMPILED=1 jest", |
40 | 40 | "update:eslint-docs": "yarn build && eslint-doc-generator --rule-doc-title-format prefix-name --rule-doc-section-options false --rule-list-split meta.docs.category --ignore-config stage-0 --config-emoji recommended,☑️",
|
41 | 41 | "watch": "yarn test --watch"
|
42 | 42 | },
|
43 | 43 | "peerDependencies": {
|
44 | 44 | "eslint": "^7.2.0 || ^8"
|
45 | 45 | },
|
46 | 46 | "dependencies": {
|
| 47 | + "@typescript-eslint/utils": "^5.62.0", |
47 | 48 | "debug": "^4.3.4",
|
48 | 49 | "doctrine": "^3.0.0",
|
49 | 50 | "eslint-import-resolver-node": "^0.3.9",
|
|
54 | 55 | },
|
55 | 56 | "devDependencies": {
|
56 | 57 | "@1stg/prettier-config": "^4.0.1",
|
| 58 | + "@1stg/tsconfig": "^2.3.3", |
57 | 59 | "@angular-eslint/template-parser": "^17.2.1",
|
58 |
| - "@babel/cli": "^7.23.9", |
59 | 60 | "@babel/core": "^7.24.0",
|
60 | 61 | "@babel/eslint-parser": "^7.23.10",
|
61 | 62 | "@babel/plugin-proposal-decorators": "^7.24.0",
|
62 | 63 | "@babel/plugin-proposal-export-default-from": "^7.23.3",
|
63 | 64 | "@babel/preset-env": "^7.24.0",
|
64 | 65 | "@babel/preset-flow": "^7.24.0",
|
65 | 66 | "@babel/preset-react": "^7.23.3",
|
| 67 | + "@babel/preset-typescript": "^7.23.3", |
66 | 68 | "@babel/register": "^7.23.7",
|
67 | 69 | "@changesets/changelog-github": "^0.5.0",
|
68 | 70 | "@changesets/cli": "^2.27.1",
|
69 | 71 | "@eslint/import-test-order-redirect-scoped": "link:./test/fixtures/order-redirect-scoped",
|
70 | 72 | "@test-scope/some-module": "link:./test/fixtures/symlinked-module",
|
| 73 | + "@types/eslint": "^8.56.5", |
71 | 74 | "@types/jest": "^29.5.12",
|
72 |
| - "@typescript-eslint/eslint-plugin": "^7.2.0", |
| 75 | + "@types/json-schema": "^7.0.15", |
| 76 | + "@typescript-eslint/eslint-plugin": "^5.62.0", |
73 | 77 | "@typescript-eslint/parser": "^5.62.0",
|
| 78 | + "@typescript-eslint/typescript-estree": "^5.62.0", |
| 79 | + "@unts/patch-package": "^8.0.0", |
| 80 | + "cross-env": "^7.0.3", |
| 81 | + "enhanced-resolve": "^5.16.0", |
74 | 82 | "escope": "^4.0.0",
|
75 | 83 | "eslint": "^7.2.0 || ^8",
|
76 | 84 | "eslint-config-prettier": "^9.1.0",
|
|
88 | 96 | "redux": "^5.0.1",
|
89 | 97 | "rimraf": "^5.0.5",
|
90 | 98 | "svelte": "^4.2.12",
|
91 |
| - "typescript": "^5.4.2" |
| 99 | + "type-fest": "^4.12.0", |
| 100 | + "typescript": "~5.1.0" |
92 | 101 | }
|
93 | 102 | }
|
0 commit comments