-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "@felte/validator-superstruct",
"version": "1.0.16",
"description": "A package to use Superstruct validation with Felte",
"main": "dist/index.cjs",
"browser": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"sideEffects": false,
"author": {
"name": "Pablo Berganza",
"url": "https://pablo.berganza.dev"
},
"repository": "github:pablo-abc/felte",
"homepage": "https://github.com/pablo-abc/felte/tree/main/packages/validator-superstruct",
"keywords": [
"svelte",
"forms",
"validation",
"felte",
"superstruct"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "pnpm prebuild && cross-env NODE_ENV=production rollup -c",
"dev": "rollup -cw",
"prepublishOnly": "pnpm build && pnpm test",
"vitest": "vitest",
"test": "vitest run",
"test:ci": "vitest run --coverage"
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@felte/common": "workspace:*"
},
"devDependencies": {
"@felte/core": "workspace:*",
"superstruct": "^1.0.3",
"svelte": "^3.46.4"
},
"peerDependencies": {
"superstruct": "^1.0.3"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
}
}