-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
117 lines (117 loc) · 3.52 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
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
{
"name": "rich-textarea",
"version": "0.26.3",
"description": "A small customizable textarea for React to colorize, highlight, decorate texts, offer autocomplete and much more.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"default": "./lib/index.js"
}
},
"files": [
"lib"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"tsc": "tsc -p . --noEmit",
"test": "vitest run --silent",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:test": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run storybook -- --no-open\" \"wait-on tcp:6006 && test-storybook\"",
"e2e": "npx playwright test",
"typedoc": "typedoc",
"size": "size-limit",
"prepare": "patch-package",
"prepublishOnly": "npm run typedoc && rimraf lib && npm run build"
},
"devDependencies": {
"@babel/plugin-transform-react-pure-annotations": "^7.24.7",
"@playwright/test": "^1.45.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@size-limit/preset-small-lib": "^11.1.4",
"@storybook/addon-storysource": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/source-loader": "^8.3.5",
"@storybook/test-runner": "^0.19.1",
"@tanstack/react-form": "^0.33.0",
"@testing-library/dom": "^10.3.1",
"@testing-library/react": "^16.0.0",
"@textlint/kernel": "^14.2.0",
"@textlint/textlint-plugin-text": "^14.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-highlight-words": "^0.20.0",
"@typescript-eslint/parser": "^8.0.1",
"assert": "^2.1.0",
"concurrently": "^9.0.0",
"eslint": "^9.9.0",
"eslint-plugin-react-compiler": "^0.0.0-experimental-9ed098e-20240725",
"eslint-plugin-react-hooks": "^5.0.0",
"events": "^3.3.0",
"formik": "^2.4.6",
"jsdom": "^25.0.0",
"kuromojin": "^3.0.0",
"monaco-diff": "^1.2.1",
"node-emoji": "^2.1.3",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"prettier": "^3.3.2",
"prism-react-renderer": "^2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-highlight-words": "^0.20.0",
"react-hook-form": "^7.52.1",
"react-is": "^18.3.1",
"rimraf": "^5.0.8",
"rollup": "^4.18.0",
"rollup-plugin-banner2": "^1.3.0",
"size-limit": "^11.1.4",
"storybook": "^8.3.5",
"textlint-rule-preset-japanese": "^10.0.3",
"typedoc": "^0.26.3",
"typedoc-plugin-markdown": "^4.1.2",
"typescript": "^5.5.3",
"vitest": "^1.6.0",
"wait-on": "^7.2.0",
"webpack": "^5.92.1"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inokawa/rich-textarea.git"
},
"keywords": [
"react",
"react-component",
"textarea",
"input",
"form",
"highlight",
"autocomplete",
"tagging",
"combobox",
"autosize",
"richtext",
"editor",
"contenteditable",
"wysiwyg"
],
"author": "inokawa <stratoooo-taster@yahoo.co.jp> (https://github.com/inokawa/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/inokawa/rich-textarea/issues"
},
"homepage": "https://github.com/inokawa/rich-textarea#readme"
}