-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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
{
"name": "gittyper",
"version": "1.1.0",
"description": "A terminal typing game for learning real Git workflows safely.",
"keywords": [
"git",
"terminal",
"tui",
"typing",
"education"
],
"homepage": "https://gittyper.vercel.app",
"bugs": "https://github.com/harbs20/gittyper/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/harbs20/gittyper.git"
},
"type": "module",
"bin": {
"gittyper": "bin/gittyper.js"
},
"scripts": {
"start": "node ./bin/gittyper.js",
"build": "npm run build:web",
"build:web": "node ./scripts/build-web.js",
"dev:web": "npm run build:web && node ./scripts/serve-web.js",
"test": "node --test",
"check": "node --check ./bin/gittyper.js && node --check ./src/challenges.js && node --check ./src/challenges/catalog.js && node --check ./src/challenges/custom.js && node --check ./src/tui.js && node --check ./src/engine.js && node --check ./src/settings.js && node --check ./src/progress.js && node --check ./src/sandbox/repository.js && node --check ./src/sandbox/server.js && node --check ./scripts/build-web.js && node --check ./scripts/serve-web.js && node --check ./web/main.js"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"docs",
"src",
"LICENSE",
"README.md",
"TRADEMARKS.md"
],
"license": "GPL-3.0-only",
"publishConfig": {
"access": "public"
}
}