-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 646 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 646 Bytes
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
{
"name": "@widgetbot/react-embed",
"version": "1.9.0",
"private": false,
"description": "WidgetBot react-embed",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/widgetbot-io/react-embed",
"author": "Daave <daave@widgetbot.io>",
"license": "MIT",
"scripts": {
"start": "tsc -w",
"prepublishOnly": "yarn build",
"build": "tsc",
"release": "yarn version && yarn publish"
},
"dependencies": {
"@widgetbot/embed-api": "^1.2.11",
"react": "^18.2.0"
},
"peerDependencies": {
"react": ">= 15"
},
"devDependencies": {
"@types/react": "^18.2.20"
}
}