-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1004 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1004 Bytes
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
{
"name": "@tryforge/forge.canvas",
"version": "1.2.3",
"description": "A ForgeScript extension that allows you to create and edit images with ease.",
"main": "dist/index.js",
"scripts": {
"docgen": "tsc && typedoc src/index.ts && node dist/docgen",
"test": "tsc && echo Done Compiling! && node dist/__tests__/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryforge/ForgeCanvas.git"
},
"keywords": [
"forgescript",
"forge",
"canvas",
"image",
"png",
"jpeg",
"botforge",
"gif"
],
"author": "lordex",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tryforge/ForgeCanvas/issues"
},
"homepage": "https://github.com/tryforge/ForgeCanvas#readme",
"devDependencies": {
"@tryforge/forgescript": "^2.2.0",
"@types/node": "^22.13.5",
"typedoc": "^0.26.11",
"typescript": "^5.7.3"
},
"dependencies": {
"@gifsx/gifsx": "^1.0.15",
"@napi-rs/canvas": "^0.1.67"
}
}