-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "@telescopic-text/react",
"description": "A React component for telescopic text.",
"version": "1.0.1",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup index.tsx --format cjs,esm --dts",
"lint": "tsc"
},
"keywords": [
"react",
"telescopic",
"interactive-text",
"expandable-text"
],
"author": {
"name": "Okan Bilal Balcı",
"email": "hi@okanbilal.com",
"url": "https://okanbilal.com"
},
"license": "MIT",
"homepage": "https://github.com/okanbilal/telescopic-text",
"repository": {
"type": "git",
"url": "https://github.com/okanbilal/telescopic-text"
},
"bugs": {
"url": "https://github.com/okanbilal/telescopic-text/issues"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}