-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 917 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
{
"name": "@morabotti/i18n-types-generator-cli",
"version": "0.1.0",
"description": "Typescript type generation for i18n keys/namespaces",
"main": "index.js",
"scripts": {
"start": "i18n-types-generator -p \"locales/{{lang}}/{{ns}}.json\" -o \"example.generated.ts\"",
"watch": "nodemon --exec \"npm run start\" --watch locales"
},
"keywords": [
"i18n"
],
"author": "Jesse Batman (https://github.com/Morabotti)",
"license": "MIT",
"homepage": "https://github.com/Morabotti/i18n-types-generator-cli",
"bin": {
"i18n-types-generator": "index.js"
},
"dependencies": {
"glob": "^7.2.0",
"yargs": "^17.2.1"
},
"devDependencies": {
"nodemon": "^2.0.14"
},
"repository": {
"type": "git",
"url": "https://github.com/Morabotti/i18n-types-generator-cli.git"
},
"bugs": {
"url": "https://github.com/Morabotti/i18n-types-generator-cli/issues"
}
}