-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 682 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 682 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
28
{
"name": "@widgetbot/react-embed",
"version": "1.11.2",
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc -w",
"prepublishOnly": "npm run build",
"build": "tsc",
"release": "npm version patch && npm publish"
},
"dependencies": {
"@widgetbot/embed-api": "^1.2.18",
"react": "^19.1.0"
},
"peerDependencies": {
"react": ">= 15"
},
"devDependencies": {
"@types/react": "^18.2.20",
"typescript": "^4.9.5"
}
}