-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "@lingual/i18n-check",
"version": "0.9.5",
"description": "i18n translation messages check",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"bin": {
"i18n-check": "dist/bin/index.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.production.json",
"format": "prettier --write .",
"lint": "eslint src",
"lint:fix": "eslint src --fix ",
"check-format": "prettier --check './{src,translations}/**/*.{js,jsx,ts,tsx,json,html,css}'",
"test": "vitest run",
"test:cli": "pnpm build && vitest --config vitest.bin.config.ts run src/bin/index.test.ts",
"prepublishOnly": "pnpm install --frozen-lockfile && pnpm run build"
},
"files": [
"dist/",
"!dist/**/*.test.*"
],
"dependencies": {
"@formatjs/cli-lib": "^8.5.4",
"@formatjs/icu-messageformat-parser": "^3.5.6",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"tinyglobby": "^0.2.17",
"typescript": "^6.0.3",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.19.17",
"braces": "^3.0.3",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/lingualdev/i18n-check.git"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.34.4+sha512.8768be55200ae3f2226b6527fcca2687e14bc4e5f12d7721a0f25da3df47915177058648db4177baf348120fa0ba2752d8d8d93f6beaf1fe64ae18da8de961af"
}