-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "xcstrings-cli",
"version": "2.8.2",
"description": "A command line tool for handling xcstrings files.",
"type": "module",
"bin": {
"xcs": "./dist/index.js"
},
"repository": "https://github.com/mshibanami/xcstrings-cli.git",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"pretest": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "prettier --check .",
"format": "prettier --write .",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"xcstrings",
"cli",
"localization",
"i18n",
"ios",
"macos",
"xcode"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/js-yaml": "^4.0.9",
"@types/json5": "^2.2.0",
"@types/micromatch": "^4.0.10",
"@types/mustache": "^4.2.6",
"@types/node": "^24.12.2",
"@types/yargs": "^17.0.35",
"micromatch": "^4.0.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.2"
},
"dependencies": {
"@bacons/xcode": "1.0.0-alpha.27",
"@inquirer/prompts": "^8.3.2",
"chalk": "^5.6.2",
"cosmiconfig": "^9.0.1",
"fast-glob": "^3.3.3",
"i18n-strings-files": "^2.0.0",
"iconv-lite": "^0.7.2",
"js-yaml": "^4.1.1",
"json5": "^2.2.3",
"mustache": "^4.2.0",
"pino": "^8.21.0",
"pino-pretty": "^13.1.3",
"yargs": "^18.0.0"
}
}