-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.99 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@melonjs/spine-plugin",
"version": "1.6.0",
"description": "melonJS Spine plugin",
"homepage": "https://github.com/melonjs/spine-plugin#readme",
"type": "module",
"keywords": [
"2D",
"HTML5",
"javascript",
"TypeScript",
"ES6",
"Canvas",
"WebGL",
"WebGL2",
"melonjs",
"plugin",
"spine",
"spine-runtimes",
"spine-animation",
"esotericsoftware"
],
"repository": {
"type": "git",
"url": "git+https://github.com/melonjs/spine-plugin.git"
},
"bugs": {
"url": "https://github.com/melonjs/spine-plugin/issues"
},
"license": "MIT",
"author": "AltByte Pte Ltd",
"funding": "https://github.com/sponsors/melonjs",
"engines": {
"node": ">= 19"
},
"main": "dist/@melonjs/spine-plugin.js",
"module": "dist/@melonjs/spine-plugin.js",
"types": "dist/@melonjs/spine-plugin.d.ts",
"sideEffects": false,
"files": [
"dist/",
"src/",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"peerDependencies": {
"melonjs": "^15.12.0"
},
"dependencies": {
"@esotericsoftware/spine-canvas": "^4.2.23",
"@esotericsoftware/spine-core": "^4.2.23",
"@esotericsoftware/spine-webgl": "^4.2.23"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"del-cli": "^5.1.0",
"eslint": "^8.50.0",
"eslint-plugin-jsdoc": "^46.8.2",
"rollup": "^3.29.2",
"rollup-plugin-bundle-size": "^1.0.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "npm run clean && npm run lint && rollup -c --silent && npm run types",
"lint": "eslint src/**.js rollup.config.mjs",
"serve": "python3 -m http.server",
"test": "npm run serve",
"prepublishOnly": "npm run build",
"clean": "del-cli --force dist/*",
"types": "tsc"
}
}