-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.3 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "locize-cli",
"version": "12.0.9",
"description": "locize cli to import locales",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"bin": {
"locize": "./dist/esm/cli.js"
},
"engines": {
"node": ">=22"
},
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./cjs": {
"default": "./dist/cjs/index.js"
},
"./esm": {
"default": "./dist/esm/index.js"
}
},
"dependencies": {
"@js.properties/properties": "0.5.4",
"android-string-resource": "2.3.10",
"cacheable-lookup": "6.1.0",
"colors": "1.4.0",
"commander": "14.0.3",
"diff": "8.0.3",
"dotenv": "17.3.1",
"fast-csv": "5.0.5",
"flat": "5.0.2",
"fluent_conv": "3.3.0",
"gettext-converter": "1.3.1",
"https-proxy-agent": "7.0.6",
"ini": "6.0.0",
"laravelphp": "2.0.4",
"locize-xcstrings": "2.0.0",
"lodash.clonedeep": "4.5.0",
"mkdirp": "3.0.1",
"resx": "2.0.4",
"rimraf": "6.1.3",
"strings-file": "0.0.5",
"tmexchange": "2.0.6",
"xliff": "6.3.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"yaml": "2.8.2"
},
"devDependencies": {
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-terser": "0.4.4",
"@yao-pkg/pkg": "6.14.1",
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"gh-release": "7.0.2",
"neostandard": "0.13.0",
"rollup": "4.59.0",
"vitest": "4.0.18"
},
"scripts": {
"lint": "eslint .",
"build": "rm -rf dist && rollup -c",
"test:watch": "vitest",
"test": "npm run lint && vitest run",
"pkg": "mkdir -p ./bins && pkg ./dist/cjs/cli.js --output ./bins/locize --targets node24-linux-x64,node24-macos-x64,node24-win-x64,node24-alpine-x64",
"release": "gh-release --assets ./bins/locize-linux,./bins/locize-macos,./bins/locize-win.exe,./bins/locize-alpine",
"preversion": "npm run test",
"version": "npm run build && npm run pkg",
"postversion": "git push && npm run release"
},
"keywords": [
"cli",
"locize"
],
"author": "adrai",
"license": "MIT",
"homepage": "https://locize.com",
"repository": {
"type": "git",
"url": "git+https://github.com/locize/locize-cli.git"
}
}