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" - } -}