-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 KB
/
package.json
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
55
56
57
58
59
{
"name": "@tripouille/i18n-cli",
"version": "1.1.0",
"description": "A CLI tool to synchronize and manage translations across multiple target files from a single source file",
"keywords": [
"cli",
"i18n",
"translation",
"localization"
],
"homepage": "https://github.com/Tripouille/i18n-cli",
"bugs": {
"url": "https://github.com/Tripouille/i18n-cli/issues"
},
"author": "Jean-Michel G. <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Tripouille/i18n-cli.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc && tsc-alias",
"check": "biome check",
"check:write": "biome check --write",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "vitest",
"test:run": "vitest run",
"test:run-coverage": "vitest run --coverage",
"test:tslint": "tsc -p ./tests/tsconfig.json",
"ci": "npm run build && npm run check && npm run check-exports && npm run test:tslint && npm run test:run",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish",
"prepare": "husky"
},
"dependencies": {
"chalk": "5.3.0",
"commander": "12.1.0",
"json-stable-stringify": "1.1.1",
"valibot": "1.0.0-beta.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.9",
"@tsconfig/strictest": "2.0.5",
"@types/json-stable-stringify": "1.1.0",
"@types/node": "20.17.6",
"@vitest/coverage-v8": "2.1.4",
"husky": "9.1.7",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"vitest": "2.1.4"
}
}