@carrot-foundation/schemas 0.1.27 → 0.1.29
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carrot-foundation/schemas",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
4
|
"description": "Carrot schema definitions and zod validation schemas",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"private": false,
|
|
@@ -44,29 +44,30 @@
|
|
|
44
44
|
"url": "https://github.com/carrot-foundation/schemas.git"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"zod": "4.1.
|
|
47
|
+
"zod": "4.1.13"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@commitlint/cli": "
|
|
51
|
-
"@commitlint/config-conventional": "
|
|
50
|
+
"@commitlint/cli": "20.1.0",
|
|
51
|
+
"@commitlint/config-conventional": "20.0.0",
|
|
52
52
|
"@cspell/dict-pt-br": "2.4.2",
|
|
53
|
-
"@eslint/js": "9.
|
|
54
|
-
"@tsconfig/recommended": "1.0.
|
|
55
|
-
"@types/node": "
|
|
53
|
+
"@eslint/js": "9.39.1",
|
|
54
|
+
"@tsconfig/recommended": "1.0.13",
|
|
55
|
+
"@types/node": "24.10.1",
|
|
56
56
|
"ajv": "8.17.1",
|
|
57
57
|
"ajv-formats": "3.0.1",
|
|
58
|
-
"cspell": "9.
|
|
59
|
-
"eslint": "9.
|
|
60
|
-
"glob": "
|
|
61
|
-
"globals": "16.
|
|
58
|
+
"cspell": "9.4.0",
|
|
59
|
+
"eslint": "9.39.1",
|
|
60
|
+
"glob": "13.0.0",
|
|
61
|
+
"globals": "16.5.0",
|
|
62
62
|
"husky": "9.1.7",
|
|
63
63
|
"jiti": "2.6.1",
|
|
64
|
-
"lint-staged": "16.
|
|
64
|
+
"lint-staged": "16.2.7",
|
|
65
65
|
"npm-package-json-lint": "9.0.0",
|
|
66
66
|
"npm-package-json-lint-config-default": "8.0.1",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"typescript
|
|
67
|
+
"prettier": "3.7.4",
|
|
68
|
+
"tsup": "8.5.1",
|
|
69
|
+
"typescript": "5.9.3",
|
|
70
|
+
"typescript-eslint": "8.48.1"
|
|
70
71
|
},
|
|
71
72
|
"publishConfig": {
|
|
72
73
|
"access": "public"
|
|
@@ -75,6 +76,8 @@
|
|
|
75
76
|
"build": "tsup",
|
|
76
77
|
"check-refs": "node scripts/check-refs.js",
|
|
77
78
|
"clean": "rm -rf dist",
|
|
79
|
+
"format": "prettier --write .",
|
|
80
|
+
"format:check": "prettier --check .",
|
|
78
81
|
"generate-ipfs-schemas": "node scripts/generate-ipfs-schemas.js",
|
|
79
82
|
"lint": "eslint .",
|
|
80
83
|
"lint:fix": "eslint . --fix",
|
|
@@ -82,6 +85,7 @@
|
|
|
82
85
|
"prebuild": "pnpm clean",
|
|
83
86
|
"pregenerate-ipfs-schemas": "pnpm build",
|
|
84
87
|
"preinstall": "npx only-allow pnpm",
|
|
88
|
+
"spell-check": "cspell lint --no-must-find-files \"src/**/*\"",
|
|
85
89
|
"type-check": "tsc --noEmit",
|
|
86
90
|
"validate-schemas": "node scripts/validate-schemas.js",
|
|
87
91
|
"verify-schema-versions": "node scripts/verify-schema-versions.js"
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"title": "MassID NFT IPFS Record",
|
|
4
4
|
"description": "Complete MassID NFT IPFS record including fixed attributes and detailed waste tracking data",
|
|
5
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.1.
|
|
6
|
-
"version": "0.1.
|
|
5
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.1.29/schemas/ipfs/mass-id/mass-id.schema.json",
|
|
6
|
+
"version": "0.1.29",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
9
|
"$schema": {
|