@_linked/core 2.0.0-next.20260311072023 → 2.0.0-next.20260311092427

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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@_linked/core",
3
- "version": "2.0.0-next.20260311072023",
3
+ "version": "2.0.0-next.20260311092427",
4
4
  "license": "MIT",
5
5
  "description": "Linked.js core query and SHACL shape DSL (copy-then-prune baseline)",
6
6
  "repository": {
@@ -42,8 +42,8 @@
42
42
  "build": "npx rimraf ./lib && npx tsc -p tsconfig-cjs.json && npx tsc -p tsconfig-esm.json && node ./scripts/dual-package.js",
43
43
  "compile": "echo '💫 Compiling CJS' && npx tsc -p tsconfig-cjs.json && echo '💫 Compiling ESM' && npx tsc -p tsconfig-esm.json",
44
44
  "dual-package": "node ./scripts/dual-package.js",
45
- "sync:agents": "node ./scripts/sync-agents.mjs",
46
- "setup": "npm run sync:agents",
45
+ "sync:agents": "node packages/skills/sync.mjs",
46
+ "setup": "node scripts/setup.mjs",
47
47
  "test": "npx jest --config jest.config.js",
48
48
  "test:fuseki": "docker compose -f src/tests/docker-compose.test.yml up -d --wait && npx jest --config jest.config.js --testPathPattern='sparql-fuseki' --verbose; EXIT=$?; docker compose -f src/tests/docker-compose.test.yml down; exit $EXIT"
49
49
  },