-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
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
{
"name": "react-simple-wysiwyg",
"version": "3.2.0",
"description": "Simple and lightweight React WYSIWYG editor",
"main": "lib/index.cjs.js",
"module": "lib/index.es.mjs",
"unpkg": "lib/index.umd.min.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "npm run build && npm start --prefix examples/typescript",
"build": "rm -rf lib && rollup -c",
"pages": "gh-pages -d examples/github.io",
"lint": "tsc --noEmit && eslint src examples",
"postversion": "git push && git push --tags",
"prepare": "npm install --prefix examples/typescript",
"prepack": "npm run build && npm run test",
"test": "npm run lint && spech",
"test:e2e": "npm test --prefix e2e/cra",
"test:full": "npm run test && npm run test:e2e"
},
"repository": "megahertz/react-simple-wysiwyg",
"files": [
"lib"
],
"keywords": [
"react",
"wysiwyg",
"editor",
"rich text"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/react-simple-wysiwyg/issues",
"homepage": "https://github.com/megahertz/react-simple-wysiwyg#readme",
"devDependencies": {
"@ironkinoko/rollup-plugin-styles": "^4.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/react": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsc": "^2.0.0",
"gh-pages": "^6.0.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-ts": "^3.4.5",
"spech": "^0.2.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"prettier": {
"printWidth": 80,
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}