-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
50
51
{
"name": "textarea-autosize",
"version": "1.0.0",
"type": "module",
"author": {
"name": "Javier Julio",
"email": "[email protected]",
"web": "https://javierjulio.com/"
},
"homepage": "https://github.com/javierjulio/textarea-autosize",
"description": "Vertically adjust a textarea based on user input without needing a clone or ghost element.",
"files": [
"dist"
],
"main": "./dist/textarea-autosize.umd.cjs",
"module": "./dist/textarea-autosize.js",
"exports": {
".": {
"import": "./dist/textarea-autosize.js",
"require": "./dist/textarea-autosize.umd.cjs"
}
},
"devDependencies": {
"@playwright/test": "^1.29.0",
"gh-pages": "^6.0.0",
"vite": "^6.0.1"
},
"scripts": {
"dev": "npm run start",
"start": "vite",
"build": "vite build",
"prepreview": "npm run build",
"preview": "vite preview",
"predeploy": "npm run build && npm run build -- --config vite-deploy.config.js",
"deploy": "gh-pages --dist demo --dotfiles",
"test": "playwright test --fully-parallel",
"test:e2e": "playwright test --browser all --fully-parallel"
},
"repository": {
"type": "git",
"url": "https://github.com/javierjulio/textarea-autosize.git"
},
"keywords": [
"textarea",
"expand",
"grow",
"vertical",
"autoexpand",
"autogrow"
]
}