-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (62 loc) · 1.6 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
{
"name": "@theprimebuilder/svelte-textarea-autosize",
"version": "1.0.6",
"description": "A lightweight Svelte component to get a textarea that automatically adjusts its height.",
"publishConfig": {
"access": "public"
},
"license":"MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"prepack": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"publint": "^0.3.17",
"svelte": "^5.51.0",
"svelte-check": "^4.4.2",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"keywords": [
"svelte",
"util", "textarea", "textarea autosize",
"textarea auto growth", "svelte component"
],
"homepage": "https://github.com/theprimebuilder/svelte-textarea-autosize#readme",
"repository": {
"type": "git",
"url": "https://github.com/theprimebuilder/svelte-textarea-autosize.git"
}
}