File size: 765 Bytes
84c1942 | 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 | {
"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": "^5.2.2"
},
"peerDependencies": {
"react": "^15.0.0 | ^16.0.0"
}
}
|