@melonjs/spine-plugin 1.5.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,79 +1,74 @@
1
1
  {
2
- "name": "@melonjs/spine-plugin",
3
- "version": "1.5.0",
4
- "description": "melonJS Spine plugin",
5
- "homepage": "https://github.com/melonjs/spine-plugin#readme",
6
- "type": "module",
7
- "keywords": [
8
- "2D",
9
- "HTML5",
10
- "javascript",
11
- "TypeScript",
12
- "ES6",
13
- "Canvas",
14
- "WebGL",
15
- "WebGL2",
16
- "melonjs",
17
- "plugin",
18
- "spine",
19
- "spine-runtimes",
20
- "spine-animation",
21
- "esotericsoftware"
22
- ],
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/melonjs/spine-plugin.git"
26
- },
27
- "bugs": {
28
- "url": "https://github.com/melonjs/spine-plugin/issues"
29
- },
30
- "license": "MIT",
31
- "author": "AltByte Pte Ltd",
32
- "funding": "https://github.com/sponsors/melonjs",
33
- "engines": {
34
- "node": ">= 19"
35
- },
36
- "main": "dist/@melonjs/spine-plugin.js",
37
- "module": "dist/@melonjs/spine-plugin.js",
38
- "types": "dist/@melonjs/spine-plugin.d.ts",
39
- "sideEffects": false,
40
- "files": [
41
- "dist/",
42
- "src/",
43
- "package.json",
44
- "README.md",
45
- "LICENSE",
46
- "CHANGELOG.md"
47
- ],
48
- "peerDependencies": {
49
- "melonjs": "^15.12.0"
50
- },
51
- "dependencies": {
52
- "@esotericsoftware/spine-canvas": "^4.2.23",
53
- "@esotericsoftware/spine-core": "^4.2.23",
54
- "@esotericsoftware/spine-webgl": "^4.2.23"
55
- },
56
- "devDependencies": {
57
- "@babel/eslint-parser": "^7.22.15",
58
- "@babel/plugin-syntax-import-assertions": "^7.22.5",
59
- "@rollup/plugin-commonjs": "^25.0.4",
60
- "@rollup/plugin-json": "^6.0.0",
61
- "@rollup/plugin-node-resolve": "^15.2.1",
62
- "@rollup/plugin-replace": "^5.0.2",
63
- "del-cli": "^5.1.0",
64
- "eslint": "^8.50.0",
65
- "eslint-plugin-jsdoc": "^46.8.2",
66
- "rollup": "^3.29.2",
67
- "rollup-plugin-bundle-size": "^1.0.3",
68
- "typescript": "^5.2.2"
69
- },
70
- "scripts": {
71
- "build": "npm run clean && npm run lint && rollup -c --silent && npm run types",
72
- "lint": "eslint src/**.js rollup.config.mjs",
73
- "serve": "python3 -m http.server",
74
- "test": "npm run serve",
75
- "prepublishOnly": "npm run build",
76
- "clean": "del-cli --force dist/*",
77
- "types": "tsc"
78
- }
2
+ "name": "@melonjs/spine-plugin",
3
+ "version": "2.0.1",
4
+ "description": "melonJS Spine plugin",
5
+ "homepage": "https://www.npmjs.com/package/@melonjs/spine-plugin",
6
+ "type": "module",
7
+ "keywords": [
8
+ "2D",
9
+ "HTML5",
10
+ "javascript",
11
+ "TypeScript",
12
+ "ES6",
13
+ "Canvas",
14
+ "WebGL",
15
+ "WebGL2",
16
+ "melonjs",
17
+ "plugin",
18
+ "spine",
19
+ "spine-runtimes",
20
+ "spine-animation",
21
+ "esotericsoftware"
22
+ ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/melonjs/melonJS.git",
26
+ "directory": "packages/spine-plugin"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/melonjs/melonJS/issues"
30
+ },
31
+ "license": "MIT",
32
+ "author": "AltByte Pte Ltd",
33
+ "funding": "https://github.com/sponsors/melonjs",
34
+ "engines": {
35
+ "node": "^20.19.0 || >=22.12.0"
36
+ },
37
+ "exports": {
38
+ ".": "./build/index.js"
39
+ },
40
+ "types": "./build/index.d.ts",
41
+ "sideEffects": false,
42
+ "files": [
43
+ "build/",
44
+ "package.json",
45
+ "README.md",
46
+ "LICENSE",
47
+ "CHANGELOG.md"
48
+ ],
49
+ "peerDependencies": {
50
+ "melonjs": ">=18.2.1"
51
+ },
52
+ "dependencies": {
53
+ "@esotericsoftware/spine-canvas": "^4.2.108",
54
+ "@esotericsoftware/spine-core": "^4.2.108",
55
+ "@esotericsoftware/spine-webgl": "^4.2.108"
56
+ },
57
+ "devDependencies": {
58
+ "concurrently": "^9.2.1",
59
+ "esbuild": "^0.27.3",
60
+ "melonjs": "workspace:*",
61
+ "tsconfig": "workspace:*",
62
+ "tsx": "^4.21.0",
63
+ "typescript": "^5.9.3"
64
+ },
65
+ "scripts": {
66
+ "dev": "concurrently --raw \"pnpm build:watch\" \"pnpm tsc:watch\"",
67
+ "build": "tsx scripts/build.ts && pnpm types",
68
+ "build:watch": "tsx scripts/build.ts watch",
69
+ "prepublishOnly": "pnpm clean && pnpm build",
70
+ "clean": "tsx scripts/clean.ts",
71
+ "types": "tsc --project tsconfig.build.json",
72
+ "tsc:watch": "tsc --project tsconfig.build.json --watch --noUnusedParameters false --noUnusedLocals false --preserveWatchOutput"
73
+ }
79
74
  }