-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.17 KB
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
{
"name": "@stackblitz-react/sdk",
"version": "1.0.1",
"description": "A unofficial React wrapper for the StackBlitz SDK that makes it easy to embed interactive code editors in React applications.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "git://github.com/danielmeloalencar/stackblitz-sdk-react.git",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx rollup -c"
},
"author": "Daniel Melo Alencar <danielmalencar2011@gmail.com> (https://github.com/danielmeloalencar)",
"license": "ISC",
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^19.0.12",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"dependencies": {
"@stackblitz/sdk": "^1.11.0",
"rollup": "^4.38.0"
}
}