-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 763 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "phaser3-webfont-loader",
"version": "1.0.0",
"description": "A webfont loader for Phaser 3 that uses CSS @font-face to download the font and FontFaceSet to detect the load.",
"main": "dist/webfont-loader.js",
"scripts": {
"build": "npm run lint && npm run build:dist && npm run build:example",
"build:dist": "tsc",
"build:example": "tsc --project tsconfig-example.json",
"lint": "eslint . --ext .js --ext .ts"
},
"keywords": [],
"author": "cloakedninjas",
"license": "ISC",
"devDependencies": {
"@types/css-font-loading-module": "0.0.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"phaser": "^3.23.0",
"typescript": "^3.9.5"
}
}