-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.53 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.53 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
{
"name": "nodegeeks-react-wysiwyg-editor",
"version": "0.2.0",
"description": "Advanced WYSIWYG editor with data binding support for React applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./styles.css": "./dist/styles.module.css"
},
"types": "dist/index.d.ts",
"style": "dist/styles.module.css",
"files": [
"dist",
"dist/index.js",
"dist/index.esm.js",
"dist/index.d.ts",
"dist/styles.module.css"
],
"scripts": {
"build": "rollup -c",
"test": "cross-env NODE_OPTIONS=--require=./.babelrc.json jest --config jest.config.cjs",
"test:integration": "cross-env NODE_OPTIONS=--require=./.babelrc.json jest --config jest.config.cjs --testPathPattern='__tests__/(.*\\.integration|hooks|components)'",
"test:e2e:playwright": "npx playwright test",
"test:e2e:puppeteer": "jest --config e2e/puppeteer/jest.config.cjs",
"test:all": "npm run test && npm run test:e2e:playwright && npm run test:e2e:puppeteer",
"lint": "eslint src --ext .ts,.tsx",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test"
},
"keywords": [
"react",
"wysiwyg",
"editor",
"rich-text",
"data-binding",
"templates"
],
"author": "",
"license": "MIT",
"dependencies": {
"tslib": "^2.6.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.59.1",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.14",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.59.1",
"puppeteer": "^24.41.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.2.4"
}
}