-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (50 loc) · 1.94 KB
/
package.json
File metadata and controls
55 lines (50 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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": "^3.22.4"
},
"devDependencies": {
"eslint": "^9.26.0",
"prettier": "^3.2.4",
"@rescript/core": "^1.0.0",
"rescript": "^12.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}