This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 1.75 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
77
{
"name": "@pixi/text-html",
"version": "3.3.1",
"description": "Multi-Style Text Rendering Plugin for PixiJS",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"watch": "xs watch",
"clean": "xs clean",
"build": "xs build",
"start": "xs serve",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"test": "xs test",
"release": "xs release",
"docs": "xs docs",
"deploy": "xs deploy"
},
"homepage": "https://pixijs.io/html-text/docs/",
"bugs": "https://github.com/pixijs/html-text/issues",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/html-text.git"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"types"
],
"extensionConfig": {
"namespace": "PIXI",
"docsName": "PixiJS HTMLText",
"docsTitle": "PixiJS HTMLText",
"docsDescription": "API Documentation for HTMLText for PixiJS",
"docsKeyword": "PixiJS, Text, canvas, rendering, typography, CSS, SVG"
},
"keywords": [
"pixijs",
"html",
"text",
"rendering",
"layout",
"rtl",
"emoji"
],
"files": [
"dist",
"lib"
],
"author": "Matt Karl <matt@mattkarl.com>",
"license": "MIT",
"peerDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/sprite": "^7.0.0",
"@pixi/text": "^7.0.0"
},
"devDependencies": {
"@pixi/core": "^7.0.0",
"@pixi/display": "^7.0.0",
"@pixi/extension-scripts": "^1.4.0",
"@pixi/sprite": "^7.0.0",
"@pixi/text": "^7.0.0",
"pre-commit": "^1.2.2"
}
}