-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "pixi-scrollbox",
"version": "2.3.1",
"description": "a scrollbox built for pixi.js using a masked box that scrolls vertically and/or horizontally with optional scrollbars",
"main": "dist/scrollbox.js",
"module": "dist/scrollbox.es.js",
"types": "@types/index.d.ts",
"directories": {
"doc": "docs"
},
"files": [
"dist",
"@types"
],
"scripts": {
"start": "rollup -c rollup.dev.js --watch",
"upgrade": "yarn upgrade-interactive --latest",
"build-demo": "rollup -c docs/rollup.config.js",
"docs": "jsdoc -c .jsdoc.json",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "yarn run build && yarn run build-demo && yarn run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/pixi-scrollbox.git"
},
"keywords": [
"PIXI",
"pixi.js",
"scrollbox",
"UI"
],
"author": "David Figatner",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidfig/pixi-scrollbox/issues"
},
"homepage": "https://github.com/davidfig/pixi-scrollbox#readme",
"peerDependencies": {
"pixi-viewport": ">=4.3.4",
"pixi.js": ">=6.0.0"
},
"dependencies": {
"penner": "^0.1.3"
},
"devDependencies": {
"@joseph184/rollup-plugin-node-builtins": "^2.1.4",
"@pixi/display": "^6.0.2",
"@pixi/interaction": "^6.0.2",
"@pixi/math": "^6.0.2",
"@pixi/ticker": "^6.0.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"clicked": "^3.0.0",
"fork-me-github": "^1.2.0",
"highlight.js": "^10.4.0",
"jsdoc": "^3.6.3",
"pixi-viewport": "^4.30.4",
"pixi.js": "^6.0.2",
"rollup": "^2.34.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"yy-counter": "^2.1.0",
"yy-fps": "^1.1.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.8.0"
}
}