-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 734 Bytes
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
{
"name": "i18next-typescript",
"version": "0.1.0",
"main": "lib/index.js",
"author": "LFDM <1986gh@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.11.2",
"i18next": "^19.7.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"peerDependencies": {
"i18next": "^19.7.0"
},
"dependencies": {
"chokidar": "^3.4.2",
"commander": "^6.1.0"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"prepack": "yarn build",
"example:watch": "yarn dev watch -c example/i18next-typescript.config.json",
"example:generate": "yarn dev generate -c example/i18next-typescript.config.json"
},
"bin": {
"i18next-typescript": "lib/cli.js"
}
}