-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
package.json
File metadata and controls
64 lines (64 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
55
56
57
58
59
60
61
62
63
64
{
"name": "loco-cli",
"version": "3.4.0",
"description": "CLI tool for syncing assets from and to Loco",
"license": "MIT",
"homepage": "https://loco-cli.robrecht.me",
"repository": {
"type": "git",
"url": "https://github.com/robrechtme/loco-cli"
},
"author": {
"name": "Robrecht Meersman",
"email": "hello@robrecht.me",
"url": "https://robrecht.me"
},
"main": "./dist/cli.js",
"bin": {
"loco-cli": "./dist/cli.js"
},
"packageManager": "pnpm@10.28.2",
"scripts": {
"build": "tsc",
"docs:dev": "pnpm --filter @loco-cli/docs dev",
"docs:build": "pnpm --filter @loco-cli/docs build",
"docs:preview": "pnpm --filter @loco-cli/docs preview",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"loco-cli": "pnpm build && node ./dist/cli.js",
"test": "vitest run"
},
"files": [
"dist",
"*.d.ts"
],
"keywords": [
"cli",
"cli-app",
"loco",
"localize"
],
"dependencies": {
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.0",
"deep-object-diff": "^1.1.9",
"inquirer": "^13.2.2",
"isomorphic-unfetch": "^4.0.2"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/cli-progress": "3.11.6",
"@types/inquirer": "9.0.9",
"@types/node": "~25.2.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"vitest": "4.0.18"
}
}