-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
74 lines (74 loc) · 2.54 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
{
"name": "pixi-viewport",
"version": "5.0.3",
"description": "A highly configurable viewport/2D camera designed to work with pixi.js. Features include dragging, pinch-to-zoom, mouse wheel zooming, decelerated dragging, follow target, snap to point, snap to zoom, clamping, bouncing on edges, and move on mouse edges.",
"main": "./dist/pixi_viewport.umd.cjs",
"module": "./dist/pixi_viewport.js",
"type": "module",
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite dev",
"test": "floss --path test",
"coverage": "nyc mocha",
"build": "vite build --config vite.build.ts && node ./scripts/append-mixins.js",
"docs": "vite build && rimraf ./js && tsc -p ./tsconfig-docs.json --outDir js && rimraf ./docs/dist/jsdoc/ && jsdoc -c .jsdoc.json && node ./scripts/copy",
"docs:serve": "vite preview --outDir dist/",
"upgrade": "yarn upgrade-interactive --latest",
"prepublishOnly": "yarn build && yarn docs",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --ignore-path .gitignore --fix",
"prepare": "husky install && yarn build",
"pre-commit": "lint-staged",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/pixi-viewport.git"
},
"keywords": [
"PIXI",
"pixi.js",
"viewport",
"zoom",
"scroll",
"pinch",
"stage",
"bounce",
"decelerate"
],
"author": "David Figatner",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidfig/pixi-viewport/issues"
},
"homepage": "https://github.com/davidfig/pixi-viewport#readme",
"devDependencies": {
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.4",
"clicked": "^4.0.3",
"dom-ease": "^0.9.3",
"electron": "20.0.2",
"eslint": "^8.3.0",
"floss": "^5.0.1",
"fs-extra": "^10.0.0",
"husky": "^8.0.3",
"jsdoc": "^3.6.3",
"lint-staged": "^13.1.0",
"pixi-ease": "^3.0.7",
"pixi.js": "^8.0.4",
"raf": "^3.4.1",
"typescript": "^4.5.2",
"vite": "4.4.10",
"vite-plugin-dts": "3.6.0",
"yy-counter": "^2.1.0",
"yy-fps": "^2.0.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.10.2"
}
}