-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.04 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pixi-webfont-loader",
"version": "1.0.3",
"description": "Font loader plugin for PixiJS",
"main": "./dist/pixi-webfont-loader.js",
"module": "./dist/pixi-webfont-loader.es.js",
"bundle": "./dist/pixi-webfont-loader.umd.js",
"types": "./index.d.ts",
"namespace": "PIXI",
"files": [
"dist/",
"index.d.ts",
"global.d.ts",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/miltoncandelero/pixi-webfont-loader.git"
},
"bugs": {
"url": "https://github.com/miltoncandelero/pixi-webfont-loader/issues"
},
"homepage": "https://github.com/miltoncandelero/pixi-webfont-loader",
"keywords": [
"pixi",
"pixi.js",
"text",
"font",
"webfont",
"loader",
"observer",
"plugin",
"webgl",
"graphics",
"render",
"2d"
],
"author": "Milton Candelero <miltoncandelero@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.4",
"@pixi-build-tools/globals": "^1.0.6",
"@pixi/eslint-config": "^2.0.2",
"@pixi/loaders": "^6.1.0",
"@pixi/text": "^6.1.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-sucrase": "^4.0.0",
"@types/css-font-loading-module": "^0.0.6",
"@types/fontfaceobserver": "^2.1.0",
"eslint": "^7.2.0",
"npm-run-all": "^4.1.5",
"prepend": "^1.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@pixi/loaders": "5.0.0 - 7.0.0",
"@pixi/text": "5.0.0 - 7.0.0"
},
"scripts": {
"prepublish": "run-s build",
"clean": "rimraf dist compile index.d.ts",
"prebuild": "run-s clean",
"build": "run-p build:lib build:types",
"build:lib": "rollup -c",
"build:types": "tsc --outDir compile && api-extractor run && rimraf compile && node ./bundle-mixins.js",
"lint": "eslint src/**/*.ts --fix"
}
}