-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 764 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 764 Bytes
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
{
"name": "autogrow-input",
"version": "0.1.11",
"description": "Auto-growing textarea and auto-width input components for React",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/react": "^19.1.10",
"tsup": "^8.0.1",
"typescript": "^5.9.2"
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"dev": "tsup --watch --config tsup.config.ts",
"clean": "rimraf dist"
}
}