-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 852 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
{
"name": "dndler",
"version": "0.0.1",
"description": "tool for creating improvized game materials for dungeons & dragons",
"main": "app.js",
"type": "module",
"homepage": "https://github.com/vanadgir/dndler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vanadgir/dndler.git"
},
"bugs": {
"url": "https://github.com/vanadgir/dndler/issues"
},
"keywords": [
"dnd",
"ttrpg",
"dindl",
"mins",
"generator",
"games"
],
"author": "Varun Nadgir, Tyler Brandt, Graham Gilpatric",
"license": "MIT",
"scripts": {
"dev": "yarn workspaces foreach -pi run dev",
"build": "yarn workspaces foreach -pti run build",
"start": "yarn workspace server run start"
},
"packageManager": "yarn@3.1.1",
"workspaces": {
"packages": [
"packages/*"
]
}
}