forked from SimonHoiberg/create-react-web-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "@geops/create-react-web-component",
"version": "3.0.5",
"description": "Create a web-component from a React component.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && tsc --build",
"format": "prettier --write '**.md' '**.ts' '**.json' '**.js' ",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geops/create-react-web-component.git"
},
"keywords": [
"react",
"web-component",
"typescript"
],
"author": "geOps AG <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geops/create-react-web-component/issues"
},
"homepage": "https://github.com/geops/create-react-web-component#readme",
"dependencies": {
"react-shadow": "^20.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@types/react": "18.2.39",
"@types/react-dom": "^18.2.17",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"sideEffects": "false"
}