-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.46 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.46 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
65
66
{
"name": "cwk-gen",
"version": "1.1.3",
"description": "High-quality image generator for Discord bots with welcome images, rank cards, profile cards, and server banners",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src/ test/",
"prepare": "npm run build",
"build": "tsc --build || echo 'TypeScript not configured'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Khanmanan/cwk-gen.git"
},
"keywords": [
"discord",
"image",
"generator",
"welcome",
"rank",
"profile",
"banner",
"discord.js",
"card",
"xp",
"level"
],
"author": "Khanmanan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Khanmanan/cwk-gen/issues"
},
"homepage": "https://github.com/Khanmanan/cwk-gen#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.70",
"axios": "^1.6.2",
"canvas-gif": "^1.0.3",
"gif-frames": "^1.0.1",
"gifencoder": "^2.0.1",
"jimp": "^0.22.7",
"path": "^0.12.7",
"sharp": "^0.29.3",
"temp": "^0.9.4",
"tmp": "^0.2.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.0.0"
}
}