-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "fuego-hud",
"version": "1.0.1",
"description": "An overlay for monitoring FPS and Frametime on browser.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --config webpack.tampermonkey.js",
"dev": "webpack serve --open --config webpack.dev.js",
"format:fix": "biome format --write src",
"lint:fix": "biome lint --apply src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p-toy-factory/fuego-hud.git"
},
"author": "pinkchampagne",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/p-toy-factory/fuego-hud/issues"
},
"homepage": "https://github.com/p-toy-factory/fuego-hud#readme",
"devDependencies": {
"@biomejs/biome": "1.7.3",
"html-webpack-plugin": "^5.5.0",
"rimraf": "^4.4.1",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"frametime": "^0.1.0",
"rxjs": "^7.8.0"
}
}