-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
{
"name": "@tintinwinata/react-textarea",
"version": "1.0.20",
"description": "Auto-resizing React textarea component with TypeScript support and modern styling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"release": "npm version patch && npm build && npm publish --access public",
"deploy": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinTinWinata/react-textarea.git"
},
"files": [
"dist",
"textarea.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"keywords": [
"react",
"textarea",
"typescript",
"auto-resize",
"form",
"ui-component",
"dynamic-height",
"react-component",
"javascript",
"frontend",
"web-development",
"npm-package",
"component-library",
"input",
"responsive",
"modern-ui"
],
"author": "TinTin Winata",
"license": "ISC",
"bugs": {
"url": "https://github.com/TinTinWinata/react-textarea/issues"
},
"homepage": "https://tintinwinata.my.id",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": "^18.3.1"
},
"dependencies": {
"rollup": "^4.22.5",
"rollup-plugin-postcss": "^4.0.2"
}
}