Files
GDevelop/GDJS/package.json
Gleb Volkov f6872bd7a1 Migrate Spine extension to @esotericsoftware/spine-pixi-v7 (#8595)
- Replace the third-party `pixi-spine@4.0.4` with the official Esoteric Software runtime for PixiJS v7 (`@esotericsoftware/spine-pixi-v7@4.2.116`).
- The new runtime only fully supports skeletons exported from **Spine 4.2**. Older exports (e.g. 4.0) may partially render but mesh deformations won't work due to a Spine JSON schema change (`deform` → `attachments`).
2026-06-16 10:23:52 +02:00

37 lines
1.4 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.160.0",
"esbuild": "^0.13.12",
"lebab": "^3.1.0",
"minimist": "^1.2.5",
"patch-package": "^6.4.7",
"@esotericsoftware/spine-pixi-v7": "~4.2.116",
"pixi.js": "7.4.2",
"prettier": "3.4.2",
"recursive-readdir": "^2.2.2",
"shelljs": "^0.8.4",
"typedoc": "^0.25.13",
"typedoc-plugin-reference-excluder": "^1.1.3",
"typescript": "5.4.5"
},
"scripts": {
"postinstall": "patch-package",
"check-types": "tsc",
"build": "node scripts/build.js",
"test": "cd tests && npm run test-benchmark",
"format": "prettier --write \"Runtime/**/*.ts\" \"Runtime/**/*.tsx\" \"../Extensions/**/*.ts\" \"../Extensions/**/JsExtension.js\" \"../Extensions/**/*.spec.js\"",
"check-format": "prettier --list-different \"Runtime/**/*.ts\" \"Runtime/**/*.tsx\" \"../Extensions/**/*.ts\" \"../Extensions/**/JsExtension.js\" \"../Extensions/**/*.spec.js\"",
"generate-doc": "typedoc --options docs/typedoc.json --plugin typedoc-plugin-reference-excluder"
}
}