@nfcard/validation 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +39 -45
package/package.json CHANGED
@@ -1,45 +1,39 @@
1
- {
2
- "name": "@nfcard/validation",
3
- "version": "0.17.0",
4
- "description": "Shared Zod validation schemas for the NFCard product family.",
5
- "type": "module",
6
- "main": "./src/index.ts",
7
- "types": "./src/index.ts",
8
- "exports": {
9
- ".": "./src/index.ts"
10
- },
11
- "files": [
12
- "dist",
13
- "src"
14
- ],
15
- "scripts": {
16
- "test": "vitest run",
17
- "test:watch": "vitest",
18
- "build": "tsup src/index.ts --format esm --dts --clean",
19
- "prepublishOnly": "pnpm build"
20
- },
21
- "dependencies": {
22
- "zod": "^3.24.0",
23
- "@nfcard/types": "workspace:*"
24
- },
25
- "devDependencies": {
26
- "tsup": "^8.0.0"
27
- },
28
- "publishConfig": {
29
- "access": "public",
30
- "registry": "https://registry.npmjs.org/",
31
- "main": "./dist/index.js",
32
- "types": "./dist/index.d.ts",
33
- "exports": {
34
- ".": {
35
- "import": "./dist/index.js",
36
- "types": "./dist/index.d.ts"
37
- }
38
- }
39
- },
40
- "repository": {
41
- "type": "git",
42
- "url": "https://bitbucket.org/fox-hole/nfcard-shared.git",
43
- "directory": "validation"
44
- }
45
- }
1
+ {
2
+ "name": "@nfcard/validation",
3
+ "version": "0.18.0",
4
+ "description": "Shared Zod validation schemas for the NFCard product family.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "src"
17
+ ],
18
+ "dependencies": {
19
+ "zod": "^3.24.0",
20
+ "@nfcard/types": "0.13.2"
21
+ },
22
+ "devDependencies": {
23
+ "tsup": "^8.0.0"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public",
27
+ "registry": "https://registry.npmjs.org/"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://bitbucket.org/fox-hole/nfcard-shared.git",
32
+ "directory": "validation"
33
+ },
34
+ "scripts": {
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "build": "tsup src/index.ts --format esm --dts --clean"
38
+ }
39
+ }