-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 891 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 891 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
35
36
37
{
"name": "@grapesjs/react",
"version": "2.0.0",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GrapesJS/react.git"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"dev": "tsc && vite build --watch",
"build": "tsc && vite build",
"build-watch": "tsc && vite build --watch",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"devDependencies": {},
"peerDependencies": {
"grapesjs": "^0.22.5",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}
}