-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "react-avatar-group",
"main": "dist/index.js",
"author": "easybase",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/easybase/react-avatar-group.git"
},
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"version": "1.0.2",
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"microbundle": "^0.13.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"shx": "^0.3.3",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": ">16.0.0",
"react-dom": ">16.0.0"
},
"files": [
"src",
"dist"
],
"scripts": {
"start": "npm run build watch",
"build": "microbundle --css inline --jsx React.createElement --jsxImportSource react --globals react/jsx-runtime=jsx --format modern,cjs",
"test": "echo 'no test specified' || true",
"prepare": "npm run build",
"pages": "git add . && git commit -m \"preparing gh-pages deploy\" && git push && git checkout gh-pages && git reset --hard main && cd example && npm run build && shx cp -r ./build ../docs && cd .. && git add . && git commit -m \"gh-pages release\" && git push -f && git checkout main"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@tippyjs/react": "^4.2.5"
}
}