Add comprehensive installation and setup documentation

- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
This commit is contained in:
Dorian
2026-01-27 17:18:21 +00:00
parent a81f655133
commit 0d073fa89e
22658 changed files with 4494151 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
(function (root, factory) {(typeof module === 'object' && module.exports) ? module.exports = factory() : root.AbortError = factory()}(typeof self !== 'undefined' ? self : this, function () {
"use strict";var AbortError=(()=>{var a=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var d=(e,r)=>{for(var o in r)a(e,o,{get:r[o],enumerable:!0})},i=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of p(r))!b.call(e,t)&&t!==o&&a(e,t,{get:()=>r[t],enumerable:!(n=c(r,t))||n.enumerable});return e};var m=e=>i(a({},"__esModule",{value:!0}),e);var u={};d(u,{AbortError:()=>s});var s=class extends Error{static name="AbortError";name="AbortError";constructor(r="The operation was aborted",...o){super(r,...o)}};return m(u);})();
return AbortError}));
+41
View File
@@ -0,0 +1,41 @@
/**
* @packageDocumentation
*
* A simple error class and options interface that seems to get copied from
* project to project.
*
* @example Using `AbortError`
*
* ```JavaScript
* import { AbortError } from 'abort-error'
*
* // a promise that will be settled later
* const deferred = Promise.withResolvers()
*
* const signal = AbortSignal.timeout(1000)
* signal.addEventListener('abort', () => {
* deferred.reject(new AbortError())
* })
* ```
*
* @example Using `AbortOptions`
*
* ```TypeScript
* import type { AbortOptions } from 'abort-error'
*
* async function myFunction (options?: AbortOptions) {
* return fetch('https://example.com', {
* signal: options?.signal
* })
* }
* ```
*/
export interface AbortOptions {
signal?: AbortSignal;
}
export declare class AbortError extends Error {
static name: string;
name: string;
constructor(message?: string, ...rest: any[]);
}
//# sourceMappingURL=index.d.ts.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAEH,MAAM,WAAW,YAAY;IAC3B,MAAM,CAAC,EAAE,WAAW,CAAA;CACrB;AAED,qBAAa,UAAW,SAAQ,KAAK;IACnC,MAAM,CAAC,IAAI,SAAe;IAC1B,IAAI,SAAe;gBAEN,OAAO,GAAE,MAAoC,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE;CAG3E"}
+40
View File
@@ -0,0 +1,40 @@
/**
* @packageDocumentation
*
* A simple error class and options interface that seems to get copied from
* project to project.
*
* @example Using `AbortError`
*
* ```JavaScript
* import { AbortError } from 'abort-error'
*
* // a promise that will be settled later
* const deferred = Promise.withResolvers()
*
* const signal = AbortSignal.timeout(1000)
* signal.addEventListener('abort', () => {
* deferred.reject(new AbortError())
* })
* ```
*
* @example Using `AbortOptions`
*
* ```TypeScript
* import type { AbortOptions } from 'abort-error'
*
* async function myFunction (options?: AbortOptions) {
* return fetch('https://example.com', {
* signal: options?.signal
* })
* }
* ```
*/
export class AbortError extends Error {
static name = 'AbortError';
name = 'AbortError';
constructor(message = 'The operation was aborted', ...rest) {
super(message, ...rest);
}
}
//# sourceMappingURL=index.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AAMH,MAAM,OAAO,UAAW,SAAQ,KAAK;IACnC,MAAM,CAAC,IAAI,GAAG,YAAY,CAAA;IAC1B,IAAI,GAAG,YAAY,CAAA;IAEnB,YAAa,UAAkB,2BAA2B,EAAE,GAAG,IAAW;QACxE,KAAK,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,CAAA;IACzB,CAAC"}
+6
View File
@@ -0,0 +1,6 @@
{
"AbortError": "https://achingbrain.github.io/abort-error/classes/AbortError.html",
".:AbortError": "https://achingbrain.github.io/abort-error/classes/AbortError.html",
"AbortOptions": "https://achingbrain.github.io/abort-error/interfaces/AbortOptions.html",
".:AbortOptions": "https://achingbrain.github.io/abort-error/interfaces/AbortOptions.html"
}