-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.68 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
{
"name": "formgator",
"version": "0.1.0",
"description": "A validator for FormData and URLSearchParams objects",
"keywords": [
"form",
"formdata",
"sveltekit",
"typescript",
"urlsearchparams",
"validator"
],
"homepage": "https://github.com/GauBen/formgator#readme",
"bugs": "https://github.com/GauBen/formgator/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/GauBen/formgator.git"
},
"license": "MIT",
"author": "Gautier Ben Aïm (https://gautier.dev)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sveltekit": {
"types": "./dist/sveltekit/index.d.ts",
"import": "./dist/sveltekit/index.js"
}
},
"main": "dist/index.js",
"files": [
"dist"
],
"workspaces": [
".",
"docs",
"demos/*"
],
"scripts": {
"build": "pkgroll --clean-dist --sourcemap && publint",
"dev": "pkgroll --sourcemap --watch",
"lint": "biome check --fix",
"test": "tsc && node --experimental-test-coverage --experimental-test-isolation=none --test-coverage-exclude='src/**/*.test.ts' --test-coverage-branches=100 --test 'src/**/*.test.ts'"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.12",
"@standard-schema/spec": "^1.0.0",
"@sveltejs/kit": "^2.16.1",
"@types/node": "^22.12.0",
"pkgroll": "^2.6.1",
"publint": "^0.3.2",
"typescript": "5.8.0-dev.20250129"
},
"peerDependencies": {
"@sveltejs/kit": ">=2.0.0"
},
"peerDependenciesMeta": {
"@sveltejs/kit": {
"optional": true
}
},
"packageManager": "[email protected]"
}