-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.57 KB
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "despair-extension",
"displayName": "Despair Extension",
"version": "5.3.1",
"description": "An Aseprite import, export and layer manipulation extension.",
"categories": [
"Scripts"
],
"keywords": [
"Aseprite",
"Extension",
"Plugin",
"Script",
"Import",
"Export",
"Spine",
"EsotericSoftware"
],
"homepage": "https://github.com/RampantDespair/Aseprite-Extension#readme",
"bugs": {
"url": "https://github.com/RampantDespair/Aseprite-Extension/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RampantDespair/Aseprite-Extension.git"
},
"license": "GPL-2.0",
"author": {
"name": "RampantDespair",
"email": "despairservices@gmail.com",
"url": "https://github.com/RampantDespair/Aseprite-Exporter"
},
"contributors": [
"IoriBranford"
],
"publisher": "RampantDespair",
"type": "module",
"workspaces": [
"configs/*"
],
"scripts": {
"build": "npx webpack --config webpack.config.mjs --mode production",
"dev": "tsx scripts/copy.ts"
},
"contributes": {
"scripts": [
{
"path": "./extension.lua"
}
]
},
"devDependencies": {
"@repo/config-prettier": "*",
"@repo/config-typescript": "*",
"@repo/config-webpack": "*",
"@types/fs-extra": "^11.0.4",
"chokidar": "^4.0.3",
"fs-extra": "^11.3.2",
"glob": "^11.0.3",
"luamin": "^1.0.4",
"zip-webpack-plugin": "^4.0.3"
}
}