@tracepass/dpp-validate 0.1.0 → 0.1.4

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 +45 -11
package/package.json CHANGED
@@ -1,22 +1,56 @@
1
1
  {
2
2
  "name": "@tracepass/dpp-validate",
3
- "version": "0.1.0",
4
- "description": "Evaluate an EU Digital Product Passport against its category field-spec a three-tier compliance verdict with regulation-cited findings. Pure functions, no third-party runtime dependencies.",
5
- "keywords": ["digital-product-passport", "dpp", "espr", "compliance", "eu-regulation", "battery-passport", "validation", "circular-economy"],
3
+ "version": "0.1.4",
4
+ "description": "Evaluate an EU Digital Product Passport against its category field-spec \u2014 a three-tier compliance verdict with regulation-cited findings. Pure functions, no third-party runtime dependencies.",
5
+ "keywords": [
6
+ "digital-product-passport",
7
+ "dpp",
8
+ "espr",
9
+ "compliance",
10
+ "eu-regulation",
11
+ "battery-passport",
12
+ "validation",
13
+ "circular-economy"
14
+ ],
6
15
  "license": "Apache-2.0",
7
16
  "author": "TracePass LTD (https://tracepass.eu)",
8
17
  "homepage": "https://github.com/malinoto/tracepass-open/tree/main/packages/dpp-validate#readme",
9
- "repository": { "type": "git", "url": "git+https://github.com/malinoto/tracepass-open.git", "directory": "packages/dpp-validate" },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/malinoto/tracepass-open.git",
21
+ "directory": "packages/dpp-validate"
22
+ },
10
23
  "bugs": "https://github.com/malinoto/tracepass-open/issues",
11
24
  "type": "module",
12
25
  "main": "./dist/index.js",
13
26
  "types": "./dist/index.d.ts",
14
- "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } },
15
- "files": ["dist", "README.md", "LICENSE"],
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.js"
31
+ }
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "README.md",
36
+ "LICENSE"
37
+ ],
16
38
  "sideEffects": false,
17
- "publishConfig": { "access": "public" },
18
- "scripts": { "build": "tsc -p tsconfig.build.json", "clean": "rm -rf dist" },
19
- "dependencies": { "@tracepass/dpp-types": "^0.1.0" },
20
- "devDependencies": { "typescript": "^5.6.3" },
21
- "engines": { "node": ">=18" }
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "provenance": true
42
+ },
43
+ "scripts": {
44
+ "build": "tsc -p tsconfig.build.json",
45
+ "clean": "rm -rf dist"
46
+ },
47
+ "dependencies": {
48
+ "@tracepass/dpp-types": "^0.1.4"
49
+ },
50
+ "devDependencies": {
51
+ "typescript": "^5.6.3"
52
+ },
53
+ "engines": {
54
+ "node": ">=18"
55
+ }
22
56
  }