-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 904 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
{
"name": "command-line-inventory-application-project",
"version": "1.0.0",
"description": "Exploring inventory application design through a gamified terminal experience",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js start",
"inventory": "node index.js inventory",
"equip": "node index.js equip",
"study": "node index.js study",
"unequip": "node index.js unequip",
"swap": "node index.js swap",
"wipe": "node index.js wipe",
"wallet": "node index.js wallet",
"classes": "node index.js classes",
"become": "node index.js become",
"lore": "node index.js lore"
},
"keywords": [
"terminal",
"command-line",
"game"
],
"author": "Alexander Gonzalez",
"license": "ISC",
"dependencies": {
"chalk-animation": "^2.0.3",
"figlet": "^1.6.0",
"gradient": "^0.2.0",
"nanoid": "^3.3.6"
}
}