-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "despair-extension",
"version": "5.0.0",
"description": "An Aseprite import, export and layer manipulation extension.",
"main": "index.js",
"directories": {
"example": "example",
"lib": "lib"
},
"scripts": {
"build": "make-dir out && rimraf out/* --glob && cpx src/**/*.{lua,json} out && cd out/ && bestzip %npm_package_name%_v%npm_package_version%.aseprite-extension *",
"dev-extension": "cpx src/**/*.{lua,json} %appdata%/Aseprite/extensions/%npm_package_name% --watch",
"dev-scripts": "cpx src/**/*.{lua} %appdata%/Aseprite/scripts/%npm_package_name% --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RampantDespair/Aseprite-Extension.git"
},
"keywords": [
"Aseprite",
"Extension",
"Plugin",
"Script",
"Import",
"Export",
"Spine",
"EsotericSoftware"
],
"author": "RampantDespair",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/RampantDespair/Aseprite-Extension/issues"
},
"homepage": "https://github.com/RampantDespair/Aseprite-Extension#readme",
"devDependencies": {
"bestzip": "^2.2.1",
"cpx2": "^7.0.1",
"make-dir-cli": "^3.1.0",
"rimraf": "^5.0.5"
},
"dependencies": {
"despair-extension": "file:"
}
}