-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.08 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@beefree.io/react-email-builder",
"version": "1.0.3",
"description": "React components and hooks for the Beefree SDK — drag-and-drop email, page, and popup builder with collaborative editing",
"repository": {
"type": "git",
"url": "git+https://github.com/BeefreeSDK/npm-react.git"
},
"bugs": {
"url": "https://github.com/BeefreeSDK/npm-react/issues"
},
"homepage": "https://github.com/BeefreeSDK/npm-react#readme",
"author": "Beefree <dev@beefree.io> (https://www.beefree.io)",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"keywords": [
"react",
"beefree",
"beefree-sdk",
"email-builder",
"email-template",
"email-template-builder",
"email-design",
"email-editor",
"html-email",
"responsive-email",
"newsletter",
"page-builder",
"landing-page-builder",
"popup-builder",
"drag-and-drop",
"drag-drop-editor",
"wysiwyg",
"visual-editor",
"no-code",
"low-code",
"react-component",
"react-hooks",
"collaborative-editing",
"real-time-collaboration"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"clean": "rimraf dist",
"prepare": "husky",
"prebuild": "yarn clean",
"prestart": "yarn clean",
"prerelease": "git pull && yarn prebuild && yarn test:ci && yarn build",
"lint": "eslint ./src --ext ts",
"test": "jest --watch",
"test:ci": "jest --runInBand --bail",
"coverage": "jest --runInBand --coverage",
"guard:main-branch": "test \"$(git rev-parse --abbrev-ref HEAD)\" = \"main\" || (echo 'Error: releases must be published from the main branch.' && exit 1)",
"release": "yarn guard:main-branch && yarn prerelease && standard-version && git push --follow-tags --no-verify",
"release:alpha": "yarn prerelease && standard-version --prerelease alpha && git push --follow-tags --no-verify",
"release:beta": "yarn prerelease && standard-version --prerelease beta && git push --follow-tags --no-verify",
"release:unstable": "yarn prerelease && standard-version --prerelease $(git branch --show-current | sed 's/\\//-/g') && git push --follow-tags --no-verify"
},
"lint-staged": {
"*.{ts,tsx}": "eslint"
},
"dependencies": {
"@beefree.io/sdk": "11.2.1"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/plugin-transform-runtime": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.28.3",
"@commitlint/config-conventional": "^20.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.2.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"dotenv": "^17.3.1",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.1.5",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",
"rollup": "^4.47.1",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"packageManager": "yarn@4.5.3",
"publishConfig": {
"access": "public"
}
}