forked from dmarcos/three-bmfont-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.02 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
78
{
"name": "three-bmfont-text",
"version": "3.1.0",
"description": "renders BMFont files in ThreeJS with word-wrapping",
"source": "index.ts",
"main": "dist/three-bmfont-text.modern.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"peerDependencies": {
"three": ">=0.129.0"
},
"dependencies": {
"layout-bmfont-text": "^1.2.0",
"quad-indices": "^2.0.1"
},
"devDependencies": {
"@types/three": "^0.128.0",
"array-shuffle": "^1.0.1",
"bluebird": "^3.7.2",
"budo": "^11.6.3",
"glsl-aastep": "^1.0.1",
"glsl-noise": "0.0.0",
"glslify": "^7.0.0",
"load-bmfont": "^1.0.0",
"microbundle": "^0.13.1",
"nice-color-palettes": "^3.0.0",
"standard": "^14.3.4",
"sun-tzu-quotes": "^1.0.0",
"three": "^0.129.0",
"three-orbit-viewer": "^69.2.9",
"three-vignette-background": "^1.0.2",
"typescript": "^4.3.2",
"typings": "github:bytro/typings#v1.1.0"
},
"scripts": {
"dist": "microbundle --target web --format modern --external three",
"start": "budo test/test-shader.js:bundle.js --dir test --live -- -t glslify",
"test-2d": "budo test/test-2d.js:bundle.js --dir test --live",
"test-3d": "budo test/test-3d.js:bundle.js --dir test --live",
"test-multi": "budo test/test-multi.js:bundle.js --dir test --live",
"test-msdf": "budo test/test-msdf.js:bundle.js --dir test --live",
"test": "standard"
},
"keywords": [
"bmfont",
"bitmap",
"font",
"text",
"three",
"threejs",
"quad",
"quads",
"batch",
"render",
"fonts",
"layout",
"word",
"wrap",
"word-wrap",
"word-wrapping",
"wrapping",
"glyph",
"glyphs"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/three-bmfont-text.git"
},
"homepage": "https://github.com/Jam3/three-bmfont-text",
"bugs": {
"url": "https://github.com/Jam3/three-bmfont-text/issues"
}
}