-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "react-shorten",
"version": "1.1.5",
"description": "React Read More base and web (HTML) component",
"repository": {
"type": "git",
"url": "https://github.com/lucasbasquerotto/react-read-more.git"
},
"homepage": "https://lucasbasquerotto.github.io/react-read-more",
"license": "MIT",
"keywords": [
"typescript",
"react",
"starter"
],
"source": "./src/index.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"/dist"
],
"peerDependencies": {
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
},
"devDependencies": {
"@types/react": "18.0.34",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "5.1.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3"
},
"overrides": {
"typescript": "5.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"test": "react-scripts test --env=jsdom -- --watchAll=false",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}