-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "peach-jam",
"version": "0.0.1",
"description": "Flexible and performant game framework for the web",
"type": "module",
"files": [
"dist/*.js",
"dist/**/*.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pretty": "prettier --write \"src/**/*.js\"",
"build": "rm -rf dist && mkdir dist && babel src -d dist",
"dev": "rm -rf dist && mkdir dist && babel src -d dist --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/L1lith/Peach-Jam.git"
},
"keywords": [
"game",
"framework",
"dev",
"high",
"performance",
"webgpu",
"webassembly",
"browser"
],
"author": "L1lith",
"license": "MIT",
"bugs": {
"url": "https://github.com/L1lith/Peach-Jam/issues"
},
"homepage": "https://github.com/L1lith/Peach-Jam#readme",
"dependencies": {
"@dimforge/rapier2d": "^0.8.0-alpha.0",
"auto-bind": "^5.0.1",
"melonjs": "^10.5.2",
"nanoid": "^3.3.1",
"sandhands": "^1.8.9"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"babel-cli": "^6.26.0",
"babel-preset-solid": "^1.3.6"
},
"optionalDependencies": {
"matter-js": "^0.18.0",
"pixi.js": "^6.2.2"
}
}