-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "@laosing/linie-avatars",
"version": "0.1.3",
"description": "React component for line avatars",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"compile": "rm -rf src/icons && node bin/build.js",
"build": "rollup -c"
},
"files": [
"dist",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Laosing/linie-avatars.git"
},
"keywords": [
"react",
"icons",
"svg",
"design"
],
"author": "Drew Rattana",
"license": "MIT",
"homepage": "https://github.com/Laosing/linie-avatars#readme",
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"esbuild": "^0.14.49",
"prettier-eslint": "^15.0.1",
"rollup": "^2.77.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1"
},
"bugs": {
"url": "https://github.com/Laosing/linie-avatars/issues"
},
"bin": {
"linie-avatars": "bin/build.js"
},
"dependencies": {
"@types/react": "^18.0.15",
"eslint": "^8.20.0",
"svgson": "^5.2.1",
"typescript": "^4.7.4",
"uppercamelcase": "^3.0.0"
},
"peerDependencies": {
"react": ">=17.0.0"
}
}