-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 772 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 772 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
{
"name": "flowgame",
"version": "0.0.3",
"description": "A Node.JS Game Engine",
"main": "./src/main.js",
"type": "module",
"types": "./types/main.d.ts",
"engines": {"node": ">=16 <21"},
"scripts": {
"types": "npx tsc "
},
"keywords": [
"game",
"engine",
"js"
],
"author": "DarkSystem",
"license": "MIT",
"dependencies": {
"@kmamal/gl": "^8.0.2-6",
"@kmamal/sdl": "^0.10.7",
"@unpic/pixels": "^1.2.2",
"audio-loader": "^1.0.3",
"audio-play": "^2.3.1",
"canvas": "^3.0.0-rc2",
"class-methods": "^1.0.12",
"fast-xml-parser": "^4.4.0",
"jpeg-js": "^0.4.4",
"pngjs": "^7.0.0",
"regl": "^2.1.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"typescript": "^5.4.5"
}
}