-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "svelte-form-enhanced",
"description": "SvelteKit use:enhance helper library. Automatically manage form state, delay page update, disable submitter, and much more.",
"version": "0.2.1",
"scripts": {
"dev": "vite dev",
"build": "vite build && node --run prepack",
"preview": "vite preview",
"postversion": "git push && git push --tags",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.svelte.js",
"types": "./dist/index.svelte.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.svelte.d.ts",
"svelte": "./dist/index.svelte.js"
}
},
"peerDependencies": {
"@sveltejs/kit": "^2.5.24",
"svelte": "^5.0.2"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^4.0.0",
"@sveltejs/package": "^2.3.8",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@types/eslint": "^9.6.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"publint": "^0.3.2",
"svelte": "^5.19.1",
"svelte-check": "^4.1.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vite": "^6.0.11"
},
"keywords": [
"Svelte",
"SvelteKit",
"form"
],
"author": "Hyunbin Seo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyunbinseo/svelte-form-enhanced.git"
},
"bugs": {
"url": "https://github.com/hyunbinseo/svelte-form-enhanced/issues"
},
"homepage": "https://github.com/hyunbinseo/svelte-form-enhanced#readme",
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}