-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 930 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 930 Bytes
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
{
"name": "simplefps",
"version": "0.0.2",
"description": "SimpleFPS",
"author": "Luuk van Venrooij",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/seriva/SimpleFPS.git"
},
"scripts": {
"prepare": "husky && microtastic prep",
"dependencies": "microtastic prep",
"dev": "microtastic dev",
"prod": "npm run check && microtastic prod",
"format": "biome format --write .",
"check": "biome check ."
},
"dependencies": {
"gl-matrix": "^3.4.4",
"peerjs": "^1.5.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"husky": "^9.1.7",
"microtastic": "^0.0.71",
"pretty-json-stringify": "^0.0.2"
},
"assetCopy": [
{
"source": "node_modules/microtastic/reactive.js",
"dest": "app/src/dependencies/reactive.js"
}
]
}