-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "gist-react",
"version": "1.0.3",
"description": "Embed the gist anywhere in your latest React project.",
"type": "module",
"scripts": {
"build": "rollup -c",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepublishOnly": "npm run build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier": "^2.8.8",
"rollup": "^3.24.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^5.0.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"license": "MIT",
"author": {
"name": "Junhyuck Ko",
"email": "[email protected]",
"url": "https://portfolio-mrbartrns.vercel.app"
},
"repository": {
"type": "git",
"url": "https://github.com/mrbartrns/gist-react"
},
"bugs": {
"url": "https://github.com/mrbartrns/gist-react/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mrbartrns/gist-react",
"keywords": [
"typescript",
"react",
"gist",
"iframe",
"next",
"github"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts"
}