|
4 | 4 | "description": "Extract react-intl messages", |
5 | 5 | "license": "MIT", |
6 | 6 | "repository": "akameco/extract-react-intl-messages", |
| 7 | + "type": "module", |
7 | 8 | "author": { |
8 | 9 | "name": "akameco", |
9 | 10 | "email": "akameco.t@gmail.com", |
|
22 | 23 | "lint": "eslint src/**/*.ts --fix --cache", |
23 | 24 | "pretest": "rimraf .test-cache", |
24 | 25 | "test": "jest", |
25 | | - "posttest": "rimraf .test-cache" |
| 26 | + "posttest": "rimraf .test-cache", |
| 27 | + "prepare": "husky" |
26 | 28 | }, |
27 | 29 | "bin": { |
28 | 30 | "extract-messages": "dist/cli.js", |
|
41 | 43 | "messages" |
42 | 44 | ], |
43 | 45 | "dependencies": { |
44 | | - "@babel/core": "^7.9.0", |
45 | | - "babel-plugin-react-intl": "^7.0.0", |
| 46 | + "@babel/core": "^7.28.3", |
| 47 | + "babel-plugin-react-intl": "^7.9.4", |
46 | 48 | "deepmerge": "^4.3.1", |
47 | 49 | "file-entry-cache": "^5.0.1", |
48 | | - "flat": "^5.0.1", |
49 | | - "glob": "^7.1.6", |
50 | | - "js-yaml": "^3.13.1", |
| 50 | + "flat": "^5.0.2", |
| 51 | + "glob": "11.0.3", |
| 52 | + "js-yaml": "4.1.0", |
51 | 53 | "load-json-file": "^6.2.0", |
52 | 54 | "lodash.merge": "^4.6.2", |
53 | | - "meow": "^6.1.0", |
54 | | - "mkdirp": "^1.0.3", |
| 55 | + "meow": "13.2.0", |
| 56 | + "mkdirp": "^1.0.4", |
55 | 57 | "pify": "^5.0.0", |
56 | 58 | "read-babelrc-up": "^1.1.0", |
57 | | - "sort-keys": "^4.0.0", |
| 59 | + "sort-keys": "^4.2.0", |
58 | 60 | "write-json-file": "^4.3.0" |
59 | 61 | }, |
60 | 62 | "devDependencies": { |
61 | 63 | "@akameco/tsconfig": "^0.4.0", |
62 | | - "@babel/plugin-proposal-class-properties": "^7.8.3", |
63 | | - "@babel/preset-env": "^7.9.0", |
64 | | - "@babel/preset-flow": "^7.9.0", |
65 | | - "@babel/preset-react": "^7.9.1", |
66 | | - "@types/file-entry-cache": "^5.0.0", |
67 | | - "@types/flat": "^5.0.0", |
68 | | - "@types/glob": "^7.1.1", |
69 | | - "@types/jest": "^25.1.4", |
70 | | - "@types/js-yaml": "^3.12.2", |
| 64 | + "@babel/plugin-proposal-class-properties": "^7.18.6", |
| 65 | + "@babel/preset-env": "^7.28.3", |
| 66 | + "@babel/preset-flow": "^7.27.1", |
| 67 | + "@babel/preset-react": "^7.27.1", |
| 68 | + "@types/file-entry-cache": "^5.0.4", |
| 69 | + "@types/flat": "^5.0.5", |
| 70 | + "@types/glob": "^7.2.0", |
| 71 | + "@types/jest": "^25.2.3", |
| 72 | + "@types/js-yaml": "^3.12.10", |
71 | 73 | "@types/load-json-file": "^2.0.7", |
72 | | - "@types/lodash.merge": "^4.6.6", |
73 | | - "@types/mkdirp": "^1.0.0", |
74 | | - "@types/node": "^24.1.0", |
| 74 | + "@types/lodash.merge": "^4.6.9", |
| 75 | + "@types/mkdirp": "^1.0.2", |
| 76 | + "@types/node": "^24.3.0", |
75 | 77 | "@types/pify": "^3.0.2", |
76 | 78 | "@types/temp-write": "^4.0.0", |
77 | 79 | "@types/write-json-file": "^2.2.1", |
78 | 80 | "babel-core": "7.0.0-bridge.0", |
79 | | - "babel-plugin-react-intl-auto": "^3.2.0", |
80 | | - "eslint": "^9.32.0", |
81 | | - "husky": "^4.2.3", |
82 | | - "jest": "^30.0.5", |
83 | | - "lint-staged": "^10.0.9", |
84 | | - "prettier": "^2.0.2", |
85 | | - "react": "^16.13.1", |
86 | | - "react-intl": "^4.2.2", |
| 81 | + "babel-plugin-react-intl-auto": "^3.3.0", |
| 82 | + "eslint": "^9.34.0", |
| 83 | + "husky": "9.1.7", |
| 84 | + "jest": "^30.1.1", |
| 85 | + "lint-staged": "16.1.5", |
| 86 | + "prettier": "3.6.2", |
| 87 | + "react": "^16.14.0", |
| 88 | + "react-intl": "^4.7.6", |
87 | 89 | "rimraf": "^3.0.2", |
88 | 90 | "temp-write": "^4.0.0", |
89 | 91 | "tempy": "^0.5.0", |
90 | | - "ts-jest": "^29.4.0", |
91 | | - "typescript": "^5.8.3", |
92 | | - "typescript-eslint": "^8.38.0" |
| 92 | + "ts-jest": "^29.4.1", |
| 93 | + "typescript": "^5.9.2", |
| 94 | + "typescript-eslint": "^8.41.0" |
93 | 95 | }, |
94 | 96 | "lint-staged": { |
95 | | - "*.{ts}": [ |
| 97 | + "*.ts": [ |
96 | 98 | "prettier --write", |
97 | 99 | "eslint --fix" |
98 | 100 | ], |
99 | 101 | "*.{js,json,md}": [ |
100 | 102 | "prettier --write" |
101 | 103 | ] |
102 | | - }, |
103 | | - "husky": { |
104 | | - "hooks": { |
105 | | - "pre-commit": "lint-staged" |
106 | | - } |
107 | 104 | } |
108 | 105 | } |
0 commit comments