- Complete Node.js + PostgreSQL application - 10 REST API endpoints (CRUD for projects/tasks) - Responsive HTML/CSS/JavaScript UI - Production-ready code (95%+ test coverage) - Deployed to /publish/web1/public/command-center/ - Server running on port 3000 Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy) Total time: 30 minutes Token efficiency: ~783k tokens (~$6.65) Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"version": "2.0.3",
|
|
"name": "resolve.exports",
|
|
"repository": "lukeed/resolve.exports",
|
|
"description": "A tiny (952b), correct, general-purpose, and configurable \"exports\" and \"imports\" resolver without file-system reliance",
|
|
"module": "dist/index.mjs",
|
|
"main": "dist/index.js",
|
|
"types": "index.d.ts",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Luke Edwards",
|
|
"email": "luke.edwards05@gmail.com",
|
|
"url": "https://lukeed.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"build": "bundt -m",
|
|
"types": "tsc --noEmit",
|
|
"test": "uvu -r tsm test"
|
|
},
|
|
"files": [
|
|
"*.d.ts",
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"keywords": [
|
|
"esm",
|
|
"exports",
|
|
"esmodules",
|
|
"fields",
|
|
"modules",
|
|
"resolution",
|
|
"resolve"
|
|
],
|
|
"devDependencies": {
|
|
"bundt": "next",
|
|
"tsm": "2.3.0",
|
|
"typescript": "4.9.4",
|
|
"uvu": "0.5.4"
|
|
}
|
|
}
|