artifact-graph 0.6.1 → 0.7.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "artifact-graph",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "Git-native Markdown artifact graph scanner and validator",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -28,12 +28,14 @@
28
28
  "default": "./dist/index.cjs"
29
29
  }
30
30
  },
31
- "./schemas/review-result.schema.json": "./schemas/review-result.schema.json"
31
+ "./schemas/review-result.schema.json": "./schemas/review-result.schema.json",
32
+ "./contracts/e2e-test/schema.json": "./contracts/e2e-test/schema.json"
32
33
  },
33
34
  "engines": {
34
35
  "node": ">=22.0.0"
35
36
  },
36
37
  "dependencies": {
38
+ "ajv": "^8.20.0",
37
39
  "better-sqlite3": "^11.9.0",
38
40
  "commander": "^13.1.0",
39
41
  "gray-matter": "^4.0.3",
@@ -43,7 +45,6 @@
43
45
  "@types/better-sqlite3": "^7.6.12",
44
46
  "@types/js-yaml": "^4.0.9",
45
47
  "@types/node": "^22.19.20",
46
- "ajv": "^8.20.0",
47
48
  "tsup": "^8.4.0",
48
49
  "typescript": "^5.7.0",
49
50
  "vitest": "^3.1.0"
@@ -57,17 +58,22 @@
57
58
  "INSTALL.md",
58
59
  "dist",
59
60
  "schemas",
61
+ "contracts",
60
62
  "scripts",
61
63
  "templates"
62
64
  ],
63
65
  "repository": {
64
66
  "type": "git",
65
- "url": "git+https://github.com/mzdbxqh/artifact-graph.git"
67
+ "url": "git+https://github.com/ifoohoo/artifact-graph.git"
66
68
  },
67
69
  "bugs": {
68
- "url": "https://github.com/mzdbxqh/artifact-graph/issues"
70
+ "url": "https://github.com/ifoohoo/artifact-graph/issues"
69
71
  },
70
- "homepage": "https://github.com/mzdbxqh/artifact-graph#readme",
72
+ "homepage": "https://github.com/ifoohoo/artifact-graph#readme",
73
+ "author": "广州市风荷科技有限公司",
74
+ "contributors": [
75
+ "mzdbxqh"
76
+ ],
71
77
  "scripts": {
72
78
  "build": "tsup src/index.ts --format esm,cjs --dts --splitting false && tsup src/cli.ts --format esm --dts --splitting false",
73
79
  "test": "vitest run --config vitest.config.ts",