-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.42 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
{
"name": "pixi-richtext",
"version": "1.1.2",
"description": "A Rich Text solution for PixiJS using SDF.",
"main": "dist/pixi.richtext.umd.js",
"browser": "dist/pixi.richtext.umd.js",
"module": "dist/pixi.richtext.es5.js",
"scripts": {
"build": "NODE_ENV=production BABEL_ENV=production rollup -c rollup.config.js",
"start": "http-server -p 3001 & rollup -c rollup.config.js -w",
"prepack": "npm run build",
"dev": "webpack-dev-server --config webpack.config.example.js --hot --host 0.0.0.0 --port 8001 --devtool source-map"
},
"keywords": [
"pixi",
"pixi.js",
"webgl",
"richtext",
"rich-text",
"sdf"
],
"author": "Icemic <[email protected]>",
"license": "MIT",
"dependencies": {
"bit-twiddle": "^1.0.2",
"color": "^2.0.0",
"huozi": "^1.1.1",
"pixi.js": "^4.5.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"pegjs": "^0.10.0",
"rollup": "^0.56.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-pegjs": "^2.1.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2"
}
}