-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 746 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 746 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
{
"name": "kingoftokyo",
"version": "1.0.0",
"description": "",
"main": "kingoftokyo.js",
"scripts": {
"build:ts": "tsc",
"build:scss": "sass --no-source-map src/kingoftokyo.scss kingoftokyo.css",
"watch:ts": "tsc --watch",
"watch:scss": "sass --watch src/yourgamename.scss yourgamename.css",
"watch": "npm run watch:ts && npm run watch:scss",
"build": "npm run build:ts && npm run build:scss"
},
"author": "",
"license": "ISC",
"dependencies": {
"bga-animations": "thoun/bga-animations#1.0.2",
"bga-cards": "thoun/bga-cards#3.1.5",
"bga-help": "thoun/bga-help#1.0.0",
"bga-zoom": "thoun/bga-zoom#1.0.4"
},
"devDependencies": {
"sass": "^1.70.0",
"typescript": "^5.3.3"
}
}