-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.57 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
{
"name": "super-react-gist",
"version": "1.1.2",
"description": "Simple and flexible component that allows you to embed GitHub Gists in React projects.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd",
"src/index.jsx"
],
"exports": {
".": {
"import": "./es/index.js",
"require": "./lib/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/georgegkas/super-react-gist.git"
},
"bugs": {
"url": "https://github.com/georgegkas/super-react-gist/issues"
},
"homepage": "https://github.com/georgegkas/super-react-gist",
"keywords": [
"react",
"react-component",
"gist",
"github",
"embed",
"all",
"component"
],
"readmeFilename": "README.md",
"author": {
"name": "George Gkasdrogkas",
"email": "[email protected]",
"url": "https://georgegkas.com/"
},
"maintainers": [
{
"name": "George Gkasdrogkas",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"dompurify": "^2.3.6"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"prop-types": "^15.8.1",
"storybook": "^8.1.10",
"vite": "^5.3.1"
},
"scripts": {
"prepare": "vite build",
"start": "storybook dev -p 3000",
"build": "vite build",
"build-storybook": "storybook build"
}
}