mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
f871b64011
* The collision mask is read from the tile maps exported by Tiled 1.9+. * Several collision masks can be used for instance to have platforms and ladders. * Take a look to the wiki for more details https://wiki.gdevelop.io/gdevelop5/objects/tilemap
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "tilemap",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"description": "",
|
|
"main": "dist/TileMapHelper.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "karma start --browsers ChromeHeadless --single-run",
|
|
"test:watch": "karma start --browsers ChromeHeadless",
|
|
"test:firefox": "karma start --browsers Firefox --single-run",
|
|
"test:firefox:watch": "karma start --browsers Firefox",
|
|
"tsc": "tsc",
|
|
"build": "rollup -c",
|
|
"dev": "rollup -c -w",
|
|
"prepublishOnly": "npm run build",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"check-format": "prettier --list-different \"src/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@types/offscreencanvas": "^2019.6.4",
|
|
"pako": "^2.0.4",
|
|
"pixi.js": "^6.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"@rollup/plugin-typescript": "^8.3.3",
|
|
"@types/expect.js": "^0.3.29",
|
|
"@types/mocha": "^5.2.7",
|
|
"expect.js": "^0.3.1",
|
|
"karma": "^6.1.0",
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
"karma-firefox-launcher": "^2.0.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-typescript": "latest",
|
|
"mocha": "^6.2.0",
|
|
"prettier": "2.1.2",
|
|
"rollup": "^2.66.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"ts-loader": "^9.2.3",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "latest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": ""
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"contributors": [],
|
|
"bugs": {
|
|
"url": ""
|
|
},
|
|
"homepage": ""
|
|
}
|