-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 994 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
42
43
44
45
46
47
48
{
"name": "kanacli",
"version": "1.0.2",
"description": "Command Cli to learn Hiragana & Katakana",
"scripts": {
"start": "node dist/bin/kanacli.js",
"build": "tsc --build",
"clean": "rm -rf dist"
},
"bin": {
"kanacli": "./dist/bin/kanacli.js"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md",
"screenshot.png"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/daikiejp/kanacli.git"
},
"keywords": [
"kanacli",
"hiragana",
"katakana",
"kana",
"japanese"
],
"author": "Danny Davila",
"license": "MIT",
"bugs": {
"url": "https://github.com/daikiejp/kanacli/issues"
},
"homepage": "https://github.com/daikiejp/kanacli#readme",
"devDependencies": {
"@types/node": "^20.10.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"@types/inquirer": "^9.0.7"
},
"type": "module",
"dependencies": {
"inquirer": "^9.2.12"
}
}