forked from fangpenlin/avataaars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 930 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
{
"name": "@schoolhouse/avatars",
"version": "0.0.6",
"description": "React component for avataaars ",
"main": "dist/index-cjs.js",
"module": "dist/index-esm.js",
"esnext:main": "dist/index-esm.js",
"types": "dist/types/index.d.ts",
"keywords": [
"react",
"avatar"
],
"contributors": [
"Anees I <[email protected]>"
],
"files": [
"dist/*"
],
"scripts": {
"prepare": "rollup -c rollup.config.js && tsc --emitDeclarationOnly"
},
"repository": "[email protected]:schoolhouse-world/avataaars.git",
"author": "Fang-Pen Lin <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"rollup": "^2.45.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/react": ">=17",
"prettier": "^2.2.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"dependencies": {
"lodash": ">=4",
"prop-types": ">=15"
}
}