-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-notion-avatar",
"version": "1.1.12",
"description": "react library for generating notion-style avatar",
"homepage": "/",
"exports": {
".": {
"require": "./notion-dist/index.cjs",
"import": "./notion-dist/index.mjs",
"types": "./notion-dist/index.d.ts"
}
},
"main": "./notion-dist/index.cjs",
"module": "./notion-dist/index.mjs",
"types": "./notion-dist/index.d.ts",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:notion": "unbuild && cp src/package/types.ts notion-dist/index.d.ts",
"prepublishOnly": "pnpm build:notion",
"release": "bumpp --commit --push --tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zonemeen/react-notion-avatar.git"
},
"files": [
"notion-dist"
],
"keywords": [
"react",
"avatar",
"notion",
"react-avatar",
"notion-style avatar"
],
"author": "zonemeen",
"license": "MIT",
"bugs": {
"url": "https://github.com/zonemeen/react-notion-avatar/issues"
},
"dependencies": {
"canvas-confetti": "^1.5.1",
"classnames": "^2.3.1",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5",
"i18next": "^21.6.14",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.6",
"react-notion-avatar": "^1.1.12",
"react-scripts": "^5.0.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/canvas-confetti": "^1.4.2",
"@types/dom-to-image": "^2.6.4",
"@types/file-saver": "^2.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/react": "^18.0.14",
"@types/react-dom": "^17.0.17",
"autoprefixer": "^10.3.1",
"bumpp": "^7.1.1",
"postcss": "^8.3.6",
"postcss-loader": "^4.3.0",
"prettier": "^2.5.1",
"sass": "^1.49.9",
"tailwindcss": "^3.0.2",
"unbuild": "^0.6.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}