mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
73642092bb
* This opens the path to multiple performance improvements (faster WebGL rendering, and then WebGPU rendering) as well as optimised resources loading in the future.
36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"name": "gdevelop-javascript-platform",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"homepage": "https://gdevelop.io",
|
|
"//": "We use esbuild for a near instant build (important for quick feedback loop when developing). Typechecking is a separate process as much longer.",
|
|
"devDependencies": {
|
|
"@types/expect.js": "^0.3.29",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^14.11.1",
|
|
"@types/sinon": "^10.0.13",
|
|
"@types/three": "0.152.0",
|
|
"esbuild": "^0.13.12",
|
|
"lebab": "^3.1.0",
|
|
"minimist": "^1.2.5",
|
|
"patch-package": "^6.4.7",
|
|
"pixi.js": "7.3.0",
|
|
"prettier": "2.1.2",
|
|
"recursive-readdir": "^2.2.2",
|
|
"shelljs": "^0.8.4",
|
|
"typedoc": "^0.22.11",
|
|
"typedoc-plugin-reference-excluder": "^1.0.0",
|
|
"typescript": "4.3.2"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "patch-package",
|
|
"check-types": "tsc",
|
|
"build": "node scripts/build.js",
|
|
"test": "cd tests && npm run test-benchmark",
|
|
"format": "prettier --write \"Runtime/**/*.ts\" \"../Extensions/**/*.ts\" \"../Extensions/**/*.spec.js\"",
|
|
"check-format": "prettier --list-different \"Runtime/**/*.ts\" \"../Extensions/**/*.ts\" \"../Extensions/**/*.spec.js\"",
|
|
"generate-doc": "typedoc --options docs/typedoc.json"
|
|
}
|
|
}
|