forked from nusu/avvvatars
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@connect3world/node-avvvatars",
"publishConfig": {
"registry": "https://npm.pkg.github.com/connect3world"
},
"version": "0.0.1",
"description": "Generates unique placeholder avatars with either characters or shapes for your node project",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "next dev",
"build": "rollup -c"
},
"author": "John Cido",
"license": "MIT",
"keywords": [
"placeholder avatars",
"avatars",
"node",
"random avatar"
],
"repository": {
"type": "git",
"url": "git+https://github.com/connect3world/node-avvvatars.git"
},
"bugs": {
"url": "https://github.com/connect3world/node-avvvatars/issues"
},
"homepage": "https://github.com/connect3world/node-avvvatars",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/node": "18.7.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^2.77.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@napi-rs/canvas": "^0.1.26",
"transformation-matrix": "^2.12.0"
}
}