-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.11 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
{
"name": "pixijs-interpolated-ticker",
"version": "1.0.1",
"author": "Reece Como <[email protected]>",
"authors": [
"Reece Como <[email protected]>"
],
"repository": "https://github.com/reececomo/pixijs-interpolated-ticker",
"homepage": "https://github.com/reececomo/pixijs-interpolated-ticker#readme",
"license": "MIT",
"description": "Fixed timestep with frame interpolation plugin for PixiJS.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["./dist"],
"scripts": {
"build:rollup": "rimraf dist && echo 'rollup (1/2):' && rollup -c --bundleConfigAsCjs",
"build:rm-dts": "rimraf dist/*.d.ts dist/actions dist/lib",
"build:dts-gen": "echo 'dts-bundle-generator (2/2):' && ./node_modules/.bin/dts-bundle-generator -o dist/index.d.ts src/index.ts --sort --no-banner --export-referenced-types --external-imports pixi.js --no-check",
"build:export-globals": "(cat src/globals.d.ts && cat dist/index.d.ts) > tmp.d.ts && mv tmp.d.ts dist/index.d.ts",
"build": "npm run build:rollup && npm run build:rm-dts && npm run build:dts-gen && npm run build:export-globals",
"coverage": "jest --runInBand --collectCoverage",
"lint": "eslint src --ext .ts",
"test": "jest --runInBand"
},
"peerDependencies": {
"pixi.js": "^6.3.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"dts-bundle-generator": "^9.5.1",
"eslint-plugin-disable-autofix": "^4.2.0",
"eslint": "^8.57.0",
"jest": "^29.3.1",
"pixi.js": "6.3.x",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"ts-jest": "^29.0.5",
"tslib": "^2.6.3",
"typescript": "4.9.5"
},
"keywords": [
"actions",
"animate",
"animation",
"interpolation",
"lerp",
"phaser",
"pixi",
"pixijs",
"transition",
"tween",
"tweening"
]
}