-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "lrn",
"version": "0.1.0",
"description": "Command-line tool for learning by repetition",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/krychu/lrn"
},
"author": {
"name": "Krystian Samp",
"email": "[email protected]"
},
"bin": "lrn.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"start": "npm run build && cli.js",
"prepare": "npm run build",
"pretest": "npm run build"
},
"files": [
"lrn.js"
],
"keywords": [
"command-line",
"cli",
"cli-app",
"learn",
"learning",
"flashcards",
"spaced-repetition",
"repetition"
],
"dependencies": {
"ink": "^3.2.0",
"latinize": "^0.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.37",
"chalk": "^4.1.2",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"ink-testing-library": "^2.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}