-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 789 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 789 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "tron-github",
"version": "1.0.0",
"description": "Create auto-playing Tron Light Cycles games on GitHub contribution grids",
"main": "dist/cli.js",
"bin": {
"tron-github": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"github",
"contributions",
"tron",
"game",
"cli",
"visualization"
],
"author": "markpython86",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"files": [
"dist/*",
"templates/*",
"README.md"
],
"engines": {
"node": ">=16.0.0"
}
}