forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 764 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 764 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
29
30
31
32
33
34
{
"name": "@codesandbox/react-embed",
"version": "0.0.14",
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandbox-client",
"directory": "packages/react-embed"
},
"license": "MIT",
"files": [
"dist",
"dist-es"
],
"sideEffects": false,
"main": "dist/index",
"module": "dist-es/index",
"typings": "dist/index.d.ts",
"scripts": {
"build": "yarn clean && tsc || tsc -m es6 --outDir dist-es",
"clean": "rimraf dist dist-es",
"watch": "tsc --watch"
},
"dependencies": {
"react-codesandboxer": "^3.0.1"
},
"devDependencies": {
"@types/react": "^16.9.17",
"rimraf": "^2.6.2",
"typescript": "3.7.4"
},
"peerDependencies": {
"react": "^15.0.0 | ^16.0.0"
}
}