-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
118 lines (118 loc) · 2.48 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@jy95/i18n-tools",
"author": "jy95",
"version": "0.0.0-development",
"license": "GPL-3.0-or-later",
"description": "CLI to make common operations around i18n files simpler",
"keywords": [
"i18n",
"cli",
"conversion",
"xlsx",
"csv",
"json",
"diff",
"export",
"import",
"internationalization",
"translation",
"localization"
],
"files": [
"dist"
],
"bin": "dist/cli.js",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/module.d.ts",
"exports": {
".": {
"require": "./dist/main.js",
"import": "./dist/module.js"
}
},
"targets": {
"cli": {
"context": "node",
"source": "src/cli.ts",
"outputFormat": "commonjs"
},
"main": {
"context": "node",
"source": "src/index.ts",
"optimize": true,
"outputFormat": "commonjs"
},
"module": {
"context": "node",
"source": "src/index.ts",
"optimize": true,
"outputFormat": "esmodule"
}
},
"engines": {
"node": ">=12"
},
"scripts": {
"watch": "npx parcel watch",
"build": "npx parcel build",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"lint": "npx prettier --check .",
"lint-fix": "npx prettier --write .",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@parcel/transformer-typescript-types": "^2.10.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^22.5.2",
"@types/yargs": "^17.0.25",
"eslint-config-prettier": "^9.0.0",
"fsify": "^5.0.0",
"jest": "^29.6.4",
"parcel": "^2.10.0",
"prettier": "^3.1.2",
"semantic-release": "^24.1.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"exceljs": "^4.3.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"yargs": "^17.7.2"
},
"eslintConfig": {
"extends": [
"prettier"
],
"overrides": [
{
"files": [
"*.ts",
"*.js"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"homepage": "https://jy95.github.io/i18n-tools/",
"repository": {
"type": "git",
"url": "https://github.com/jy95/i18n-tools.git"
},
"publishConfig": {
"access": "public"
}
}