-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 904 Bytes
/
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
{
"name": "jlatte",
"version": "0.0.3",
"description": "A simple CLI to translate JSON files.",
"main": "index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"jlatte": "./src/bin.js"
},
"scripts": {
"start": "node ./src/bin.js",
"release": "dotenv release-it --",
"test": "echo \"Error: no test specified\" && exit 1",
"translate": "pnpm jlatte languages/en.json true"
},
"keywords": [
"translate",
"json",
"languages"
],
"author": "Jepri Creations",
"license": "ISC",
"dependencies": {
"@clack/prompts": "0.7.0",
"dotenv": "16.3.1",
"picocolors": "1.0.0",
"translate": "2.0.2"
},
"devDependencies": {
"@release-it/conventional-changelog": "7.0.0",
"dotenv-cli": "7.2.1",
"release-it": "16.1.4",
"standard": "17.1.0"
},
"eslintConfig": {
"extends": "standard"
}
}