From c24fb4eff3222907ce3c4a6ed3154f2d49b93308 Mon Sep 17 00:00:00 2001 From: hyperpolymath <6759885+hyperpolymath@users.noreply.github.com> Date: Sun, 31 May 2026 08:19:58 +0100 Subject: [PATCH] chore(deno): delete redundant package.json (deno.json fully covers, standards#253 longtail) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Class A — pure-Deno port. The repo's deno.json already covers every script from package.json (and adds extensive Deno-native tasks for test/bench/lint/fmt/compile/wasm). The package.json was vestigial zod-only-dep + duplicated rescript build script. Per per-repo follow-up tracker for standards#253 (campaign closed 2026-05-31, longtail tracked in project_estate_npm_to_deno_2026_05_28.md). Refs hyperpolymath/standards#253. Co-Authored-By: Claude Opus 4.7 (1M context) --- package.json | 55 ---------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 package.json diff --git a/package.json b/package.json deleted file mode 100644 index 3a54006..0000000 --- a/package.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "name": "ubicity", - "version": "1.0.0", - "description": "Learning capture system for urban informal education - tools to document WHO/WHERE/WHAT of learning experiences", - "type": "module", - "main": "src/index.js", - "bin": { - "ubicity": "./src/cli.js" - }, - "scripts": { - "//": "CORE PIPELINE: Build ReScript logic, then execute via Node/Deno", - "res:build": "rescript", - "res:dev": "rescript build -w", - - "//": "DOMAIN TASKS: Capture learning events using the quick or full workflows", - "capture": "node src/capture.js", - "capture:quick": "node src/capture.js quick", - "capture:full": "node src/capture.js full", - - "//": "RESCRIPT BINDINGS: Type-safe capture logic entry points", - "capture:res": "node src-rescript/CaptureCLI.res.js", - "capture:res:quick": "node src-rescript/CaptureCLI.res.js quick", - "capture:res:full": "node src-rescript/CaptureCLI.res.js full", - - "//": "ANALYSIS: Visualization and reporting of captured data hotspots", - "visualize": "node src/visualize.js", - "report": "node src/cli.js report", - "hotspots": "node src/cli.js hotspots", - "stats": "node src/cli.js stats", - - "//": "INFRASTRUCTURE: Data migration and validation", - "migrate": "node scripts/migrate-data.js", - "migrate:check": "node scripts/migrate-data.js --check", - "migrate:fix": "node scripts/migrate-data.js --fix", - - "//": "TESTING: Comprehensive test suite including integration checks", - "test": "node --test test/*.test.mjs", - "test:integration": "node test-integration.mjs && node test-existing-data.mjs", - "test:all": "npm run test && npm run test:integration", - "lint": "eslint src tests examples scripts", - "format": "prettier --write \"**/*.{js,json,md}\"" - }, - "dependencies": { - "zod": "^4.3.6" - }, - "devDependencies": { - "eslint": "^10.2.0", - "prettier": "^3.2.4", - "@rescript/core": "^1.0.0", - "rescript": "^12.0.0" - }, - "engines": { - "node": ">=18.0.0" - } -}