-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 910 Bytes
/
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
{
"name": "avatar-builder",
"version": "1.0.2",
"description": "Create a beautiful avatar for nodejs",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"sample": "tsc & node sample.js"
},
"keywords": [
"avatar",
"builder",
"avatar-builder",
"nodejs",
"node",
"cat",
"identicon",
"square",
"triangle",
"github",
"8bit"
],
"author": "Gabriel Allaigre",
"license": "Apache-2.0",
"devDependencies": {
"@types/lru-cache": "^4.1.1",
"@types/node": "^16.11.12",
"@types/seedrandom": "^2.4.27",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"canvas": "^2.8.0",
"lru-cache": "^4.1.5",
"seedrandom": "^2.4.4"
},
"engines": {
"node": ">=10.0",
"npm": ">=6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gabrie-allaigre/node-avatar-builder"
}
}