|
1 | 1 | {
|
2 | 2 | "name": "reselect-codemods",
|
3 |
| - "version": "0.1.0", |
| 3 | + "version": "0.0.1", |
4 | 4 | "description": "A collection of codemods for the reselect library",
|
| 5 | + "keywords": [ |
| 6 | + "redux", |
| 7 | + "redux-toolkit", |
| 8 | + "reselect", |
| 9 | + "codemod" |
| 10 | + ], |
| 11 | + "homepage": "https://github.com/reduxjs/reselect/tree/master/codemods#readme", |
5 | 12 | "bugs": {
|
6 | 13 | "url": "https://github.com/reduxjs/reselect/issues"
|
7 | 14 | },
|
8 |
| - "scripts": { |
9 |
| - "format": "prettier -w . --config prettier.config.mjs", |
10 |
| - "format-check": "prettier -c . --config prettier.config.mjs", |
11 |
| - "lint": "eslint --flag unstable_ts_config -c eslint.config.mts", |
12 |
| - "lint-fix": "eslint --fix --flag unstable_ts_config -c eslint.config.mts", |
13 |
| - "test": "vitest --run" |
| 15 | + "repository": { |
| 16 | + "directory": "codemods", |
| 17 | + "type": "git", |
| 18 | + "url": "git+https://github.com/reduxjs/reselect.git" |
14 | 19 | },
|
| 20 | + "sideEffects": false, |
15 | 21 | "bin": "./bin/cli.mjs",
|
16 | 22 | "files": [
|
17 | 23 | "bin/*",
|
|
20 | 26 | "package.json",
|
21 | 27 | "README.md"
|
22 | 28 | ],
|
23 |
| - "keywords": [ |
24 |
| - "redux", |
25 |
| - "redux-toolkit", |
26 |
| - "reselect", |
27 |
| - "codemod" |
28 |
| - ], |
| 29 | + "scripts": { |
| 30 | + "format": "prettier -w . --config prettier.config.mjs", |
| 31 | + "format-check": "prettier -c . --config prettier.config.mjs", |
| 32 | + "lint": "eslint --flag unstable_ts_config -c eslint.config.mts", |
| 33 | + "lint-fix": "eslint --fix --flag unstable_ts_config -c eslint.config.mts", |
| 34 | + "test": "vitest --run" |
| 35 | + }, |
29 | 36 | "dependencies": {
|
30 |
| - "execa": "^9.4.0", |
| 37 | + "execa": "^9.5.1", |
31 | 38 | "globby": "^14.0.2",
|
32 |
| - "jscodeshift": "^17.0.0", |
| 39 | + "jscodeshift": "^17.1.1", |
33 | 40 | "ts-node": "^10.9.2",
|
34 |
| - "typescript": "^5.6.2" |
| 41 | + "typescript": "^5.6.3" |
35 | 42 | },
|
36 | 43 | "devDependencies": {
|
| 44 | + "@eslint/js": "^9.14.0", |
37 | 45 | "@types/eslint-config-prettier": "^6.11.3",
|
38 |
| - "@types/eslint__js": "^8.42.3", |
39 | 46 | "@types/jscodeshift": "^0.12.0",
|
40 |
| - "@types/node": "^22.7.4", |
41 |
| - "eslint": "^9.11.1", |
| 47 | + "@types/node": "^22.9.0", |
| 48 | + "eslint": "^9.14.0", |
42 | 49 | "eslint-config-prettier": "^9.1.0",
|
43 |
| - "jiti": "^2.1.0", |
| 50 | + "jiti": "^2.4.0", |
44 | 51 | "prettier": "^3.3.3",
|
45 |
| - "typescript-eslint": "^8.8.0", |
46 |
| - "vitest": "^2.1.2" |
| 52 | + "reselect": "workspace:^", |
| 53 | + "typescript-eslint": "^8.14.0", |
| 54 | + "vitest": "^2.1.5" |
47 | 55 | },
|
48 | 56 | "engines": {
|
49 | 57 | "node": ">= 16"
|
50 | 58 | },
|
51 | 59 | "publishConfig": {
|
52 |
| - "access": "public" |
53 |
| - }, |
54 |
| - "repository": { |
55 |
| - "directory": "codemods", |
56 |
| - "type": "git", |
57 |
| - "url": "git+https://github.com/reduxjs/reselect.git" |
58 |
| - }, |
59 |
| - "sideEffects": false |
| 60 | + "access": "public", |
| 61 | + "provenance": true |
| 62 | + } |
60 | 63 | }
|
0 commit comments