{ "name": "@esotericsoftware/spine-ts", "version": "4.0.2", "description": "The official Spine Runtimes for the web.", "files": [ "README.md" ], "scripts": { "build": "rm -rf build && concurrently \"npm run build:core\" \"npm run build:canvas\" \"npm run build:webgl\" \"npm run build:player\" \"npm run build:threejs\" \"npm run build:modules\"", "build:modules": "tsc -b -clean && tsc -b", "build:core": "npx esbuild --bundle spine-core/src/index.ts --tsconfig=spine-core/tsconfig.json --sourcemap --outfile=build/spine-core.js --format=iife --global-name=\"spine\"", "build:canvas": "npx esbuild --bundle spine-canvas/src/index.ts --tsconfig=spine-canvas/tsconfig.json --sourcemap --outfile=build/spine-canvas.js --format=iife --global-name=\"spine\"", "build:webgl": "npx esbuild --bundle spine-webgl/src/index.ts --tsconfig=spine-webgl/tsconfig.json --sourcemap --outfile=build/spine-webgl.js --format=iife --global-name=\"spine\"", "build:player": "npx esbuild --bundle spine-player/src/index.ts --tsconfig=spine-player/tsconfig.json --sourcemap --outfile=build/spine-player.js --format=iife --global-name=\"spine\"", "build:threejs": "npx esbuild --bundle spine-threejs/src/index.ts --tsconfig=spine-threejs/tsconfig.json --sourcemap --outfile=build/spine-threejs.js --external:three --format=iife --global-name=\"spine\"", "dev": "concurrently \"npx live-server --no-browser\" \"npm run dev:canvas\" \"npm run dev:webgl\" \"npm run dev:player\" \"npm run dev:threejs\"", "dev:canvas": "npm run build:canvas -- --watch", "dev:webgl": "npm run build:webgl -- --watch", "dev:player": "npm run build:player -- --watch", "dev:threejs": "npm run build:threejs -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/esotericsoftware/spine-runtimes.git" }, "keywords": [ "gamedev", "animations", "2d", "spine", "game-dev", "runtimes", "skeletal" ], "author": "Esoteric Software LLC", "license": "LicenseRef-LICENSE", "bugs": { "url": "https://github.com/esotericsoftware/spine-runtimes/issues" }, "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "workspaces": [ "spine-core", "spine-canvas", "spine-player", "spine-threejs", "spine-webgl" ], "devDependencies": { "concurrently": "^6.2.1", "esbuild": "^0.12.22", "live-server": "^1.2.1", "npx": "^10.2.2", "typescript": "^4.3.5" } }