-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "react-highlight-within-textarea",
"version": "3.2.2",
"description": "React component for highlighting text within a textarea",
"homepage": "https://bonafideduck.github.io/react-highlight-within-textarea/",
"repository": "[email protected]:bonafideduck/react-highlight-within-textarea.git",
"author": "Mark Eklund <[email protected]>",
"license": "MIT",
"private": false,
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"start": "concurrently --kill-others 'tsc --watch' 'cd demo && npm start'",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"publish-pages": "cd demo && yarn publish-pages",
"create-icons": "npx icongenie generate -p demo/icongenie.json",
"test:ci": "cd demo && CI=true yarn test --all"
},
"peerDependencies": {
"draft-js": ">=0.11.7",
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"@types/draft-js": ">=0.11.18",
"concurrently": "^9.0.1",
"draft-js": ">=0.11.7",
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"typescript": "^5.6.2"
},
"files": [
"/lib"
]
}