-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.09 KB
/
package.json
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
40
41
42
43
{
"name": "react-jsbox",
"version": "1.3.4",
"description": "A custom React renderer for writing JSBox apps in React.",
"keywords": [
"React",
"JSBox",
"react-jsbox",
"react-reconciler",
"custom-renderer"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"format": "prettier --ignore-path .gitignore --single-quote --write src/**/*.{js,md}",
"prepublishOnly": "npm run build"
},
"author": "Eva1ent",
"repository": "github:Nicify/react-jsbox",
"dependencies": {
"react-reconciler": "0.29.0"
},
"peerDependencies": {
"react": "16.13.1"
},
"devDependencies": {
"eslint": "8.38.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsbox": "0.1.1",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.8.7",
"react": "18.2.0",
"tsup": "6.7.0"
},
"license": "MIT"
}