-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "react-simple-badges",
"description": "React badges for your Profile and Projects.",
"version": "4.2.275",
"type": "module",
"source": "./src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"umd:main": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"author": "NWylynko",
"license": "MIT",
"repository": "NWylynko/react-simple-badges",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"dev": "microbundle --watch --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"release": "bumpp --commit --push --tag",
"fetchColours": "cd fetchColours && pnpm install && pnpm build && pnpm start"
},
"packageManager": "pnpm@7.27.1",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.2.0"
},
"dependencies": {
"server-only": "^0.0.1"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"bumpp": "^9.0.0",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"keywords": [
"react",
"icons",
"badges",
"server-component",
"simple",
"next"
]
}