-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@marcreichel/alpine-autosize",
"version": "0.0.0",
"description": "A simple AlpineJS plugin for autosizing textareas",
"license": "MIT",
"author": {
"name": "Marc Reichel",
"url": "https://marcreichel.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcreichel/alpine-autosize.git"
},
"main": "src/index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"bugs": {
"url": "https://github.com/marcreichel/alpine-autosize/issues"
},
"homepage": "https://github.com/marcreichel/alpine-autosize#readme",
"dependencies": {
"autosize": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"rollup": "^2.67.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"LICENSE",
"README.md",
"src/index.js",
"package.json",
"dist"
]
}