-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (51 loc) · 1.4 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
{
"author": "Alexandre Blondeau",
"description": "🛠️ A Plugin for Aseprite exported files.",
"devDependencies": {
"docdash": "2.0.2",
"jsdoc": "4.0.3"
},
"engines": {
"node": "16.13.0",
"npm": "8.1.0"
},
"files": [
"sources/"
],
"homepage": "https://github.com/theatrejs/plugin-aseprite",
"keywords": [
"2d",
"aseprite",
"canvas",
"engine",
"game",
"game-engine",
"html",
"html5",
"javascript",
"pixel-art",
"plugin",
"theatrejs",
"theatrejs-plugin",
"webgl",
"webgl2"
],
"license": "MIT",
"main": "./sources/index.js",
"name": "@theatrejs/plugin-aseprite",
"peerDependencies": {
"@theatrejs/theatrejs": ">= 1.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theatrejs/plugin-aseprite.git"
},
"scripts": {
"github-pages": "npm run github-pages:clean && npm run github-pages:generate ",
"github-pages:clean": "rm -rf ./docs/",
"github-pages:generate": "jsdoc ./tools/jsdoc/HOME.md ./sources/ --recurse --destination ./docs/ --template ./node_modules/docdash --configure ./tools/jsdoc/jsdoc.config.json",
"postversion": "node ./tools/custom/postversion.cjs"
},
"type": "module",
"version": "1.3.0"
}