marinaedutlan 0.6.1

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 ADDED
@@ -0,0 +1,90 @@
1
+ {
2
+ "name": "marinaedutlan",
3
+ "version": "0.6.1",
4
+ "description": "Marina — Unified Metacognitive System. Professional CLI + lightweight unified core (DMA + Meta-DNA + MCP). `npm install -g marinaedutlan` gives you `marinaedutlan run`, `marinaedutlan doctor`, and `from 'marinaedutlan/core'`. Full visual lab available from source.",
5
+ "keywords": [
6
+ "metacognition",
7
+ "cognitive-architecture",
8
+ "marina",
9
+ "dma",
10
+ "meta-dna",
11
+ "mcp",
12
+ "carina"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "Cristian",
16
+ "type": "module",
17
+ "bin": {
18
+ "marina": "./bin/marina.js"
19
+ },
20
+ "main": "./bin/marina.js",
21
+ "types": "./dist/core/MarinaAgent.d.ts",
22
+ "exports": {
23
+ ".": {
24
+ "import": "./bin/marina.js",
25
+ "default": "./bin/marina.js"
26
+ },
27
+ "./core": {
28
+ "import": "./dist/core/MarinaAgent.js",
29
+ "types": "./dist/core/MarinaAgent.d.ts",
30
+ "default": "./dist/core/MarinaAgent.js"
31
+ },
32
+ "./package.json": "./package.json"
33
+ },
34
+ "files": [
35
+ "bin",
36
+ "dist/core/MarinaAgent.js",
37
+ "dist/core/MarinaAgent.d.ts",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "private": false,
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "scripts": {
46
+ "dev": "tsx server.ts",
47
+ "build": "vite build && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
48
+ "build:core": "esbuild src/core/MarinaAgent.ts --bundle --platform=node --format=esm --outfile=dist/core/MarinaAgent.js --sourcemap && node -e \"const fs=require('fs');const p=require('path');try{fs.copyFileSync(p.join('src','core','MarinaAgent.d.ts'),p.join('dist','core','MarinaAgent.d.ts'));console.log('d.ts copied');}catch(e){console.warn('d.ts copy warning:',e.message);}\" && npm run clean:maps",
49
+ "start": "node dist/server.cjs",
50
+ "clean": "node -e \"const fs=require('fs');const p=require('path');['dist','release'].forEach(d=>{try{fs.rmSync(d,{recursive:true,force:true});}catch(e){}});console.log('cleaned');\"",
51
+ "lint": "tsc --noEmit",
52
+ "test": "node --test test/**/*.test.js",
53
+ "test:python": "python -m pytest test/test_core.py -q --tb=line 2>$null || python -c \"import sys,os,unittest; sys.path.insert(0,os.getcwd()); from test.test_core import TestMarinaAgent; unittest.TextTestRunner(verbosity=2).run(unittest.TestLoader().loadTestsFromTestCase(TestMarinaAgent))\"",
54
+ "verify:pack": "node scripts/verify-pack.js",
55
+ "clean:maps": "node scripts/clean-maps.js",
56
+ "clean:pycache": "node scripts/clean-pycache.js",
57
+ "prepublishOnly": "npm run build:core && npm run clean:maps && npm run clean:pycache && npm run test && npm run verify:pack"
58
+ },
59
+ "devDependencies": {
60
+ "@google/genai": "^2.4.0",
61
+ "@tailwindcss/vite": "^4.3.0",
62
+ "@types/express": "^4.17.21",
63
+ "@types/node": "^22.14.0",
64
+ "@types/react": "^19.2.17",
65
+ "@types/react-dom": "^19.2.3",
66
+ "@vitejs/plugin-react": "^4.7.0",
67
+ "autoprefixer": "^10.4.21",
68
+ "dotenv": "^17.4.2",
69
+ "esbuild": "^0.25.0",
70
+ "express": "^4.21.2",
71
+ "open": "^10.1.0",
72
+ "react": "^19.2.7",
73
+ "react-dom": "^19.2.7",
74
+ "tailwindcss": "^4.1.14",
75
+ "tsx": "^4.21.0",
76
+ "typescript": "~5.8.2",
77
+ "vite": "^6.2.3"
78
+ },
79
+ "repository": {
80
+ "type": "git",
81
+ "url": "https://github.com/cristianmi24/Marina.git"
82
+ },
83
+ "homepage": "https://github.com/cristianmi24/Marina",
84
+ "bugs": {
85
+ "url": "https://github.com/cristianmi24/Marina/issues"
86
+ },
87
+ "engines": {
88
+ "node": ">=18.0.0"
89
+ }
90
+ }