-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "react-webcomponentify",
"version": "1.3.2",
"description": "Build and export React Components as Web Components without any extra effort.",
"main": "dist/build",
"typings": "dist/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/master-atul/react-webcomponentify.git"
},
"keywords": [
"react",
"web",
"component",
"export",
"web-component",
"javascript"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/master-atul/react-webcomponentify/issues"
},
"homepage": "https://github.com/master-atul/react-webcomponentify#readme",
"dependencies": {
"child-replace-with-polyfill": "1.0.1",
"react-create-ref": "1.0.1"
},
"devDependencies": {
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-loader": "8.2.0",
"typescript": "4.2.4",
"webpack": "4.29.0",
"webpack-cli": "3.2.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}