-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "textarea-autosize-reactjs",
"version": "0.0.1",
"description": "Learning how to create React modules using TypeScript!",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "yarn build"
},
"files": [
"/lib"
],
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.39",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.6.2"
},
"dependencies": {
"@types/autosize": "^4.0.1",
"autosize": "^5.0.1"
},
"keywords": [
"react",
"typescript",
"textarea-autoresize",
"textarea",
"autosize"
],
"repository": {
"type": "git",
"url": "git+https://github.com/albertcito/textarea-autosize-reactjs.git"
},
"homepage": "https://github.com/albertcito/textarea-autosize-reactjs#readme"
}