-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "svelte-formor",
"version": "0.2.0",
"description": "Form validation for Svelte in Runes with Valibot.",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/svelte-formor.svelte.d.ts",
"default": "./dist/svelte-formor.svelte.js"
}
}
},
"scripts": {
"build": "vite build",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/svelte-formor.git"
},
"keywords": [
"svelte",
"runes",
"form",
"validation",
"valibot",
"schema"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/svelte-formor/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/svelte-formor#readme",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "4.0.0",
"@testing-library/svelte": "5.2.4",
"@types/node": "20.17.1",
"@vitest/coverage-v8": "2.1.3",
"happy-dom": "15.7.4",
"svelte": "5.1.3",
"typescript": "5.6.3",
"valibot": "0.42.1",
"vite": "5.4.10",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.3"
}
}