-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 850 Bytes
/
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
{
"name": "wc-react",
"version": "0.5.1",
"description": "Web Components wrapper class for React",
"author": "metulev",
"license": "MIT",
"module": "dist/esm/index.js",
"main": "dist/esm/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"react",
"web component",
"web components",
"wc"
],
"repository": {
"type": "git",
"url": "https://github.com/nmetulev/wc-react"
},
"bugs": {
"url": "https://github.com/nmetulev/wc-react/issues"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^6.8.0",
"react": "^17.0.1",
"typescript": "^3.8.3"
},
"prettier": {
"singleQuote": true
}
}