-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "pixi-stats",
"version": "3.1.1",
"description": "a 2024 version of stats.js + gstats",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc --build",
"format": "prettier --write src",
"lint": "eslint src --fix",
"precommit": "yarn lint;yarn format;yarn build",
"amend": "yarn precommit && git commit -a --am --no-edit"
},
"resolutions": {
"semver": ">=5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prozi/pixi-stats.git"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"stats.js",
"gstats",
"pixi.js",
"webgl",
"stats",
"fps"
],
"author": "Jacek Pietal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Prozi/pixi-stats/issues"
},
"homepage": "https://github.com/Prozi/pixi-stats#readme",
"dependencies": {},
"peerDependencies": {
"pixi.js": "*"
},
"devDependencies": {
"eslint": "^9.14.0",
"globals": "^15.12.0",
"pixi.js": "^8.5.2",
"prettier": "^3.3.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}