-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1001 Bytes
/
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
{
"name": "react-truncate-lines",
"version": "1.0.9",
"description": "React component for text truncation",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module es6 --outDir dist/esm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsung-ju/react-truncate-lines.git"
},
"author": "tsung-ju",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsung-ju/react-truncate-lines/issues"
},
"homepage": "https://github.com/tsung-ju/react-truncate-lines#readme",
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0 || ^16.14.0 || ^15.7.0"
},
"devDependencies": {
"@types/react": "^17.0.11",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}