-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.36 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.36 KB
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
{
"name": "magnet-soul",
"version": "1.0.0",
"description": "Supercharged platformer game made in 48 hours for GMTK game jam 2021 ⚡️",
"private": true,
"browser": true,
"main": "main.js",
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"build": "sh -c 'node_modules/.bin/tsc --noEmit'",
"start": "yarn build && sh -c 'node_modules/.bin/parcel src/index.html --open'",
"clean": "rm -rf release",
"dist": "yarn clean; yarn build && sh -c 'node_modules/.bin/parcel build src/index.html --public-url=\"./\" --out-dir=\"release\"'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:Lumbi/html-2d-game-core.git"
},
"author": "Mr. Blue, Gabriel Lumbi, Esa Koskinen, Shoko Kondo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lumbi/html-2d-game-core/issues"
},
"homepage": "https://github.com/Lumbi/html-2d-game-core",
"dependencies": {
"@types/matter-js": "^0.17.1",
"@types/victor": "^1.1.0",
"matter-attractors": "^0.1.6",
"matter-js": "^0.17.1",
"pixi.js": "^5.1.3",
"victor": "^1.1.0"
},
"devDependencies": {
"@types/node": "^11.11.5",
"parcel-bundler": "^1.9.4",
"typescript": "^3.6.3"
}
}