docs: Rebuild documentation as enterprise-grade TLAS platform

- Migrate from custom HTTP server to VitePress framework
- Rename project to Tokenized License Approval System (TLAS)
- Add comprehensive documentation for all stakeholders:
  - Business: Executive summary, value proposition, governance
  - Operations: Infrastructure, installation, monitoring, backup
  - Departments: User guide, workflows, verification, issuance
  - Developers: API reference, authentication, webhooks, SDKs
  - Compliance: OWASP, DPDP Act, IT Act, audit framework
- Add modern theme with dark mode and full-text search
- Update Dockerfile for VitePress build process

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mahi
2026-02-10 00:05:20 -04:00
parent 4a5bf16827
commit 435889ee79
65 changed files with 6324 additions and 8342 deletions

View File

@@ -1,23 +1,25 @@
{
"name": "goa-gel-documentation",
"version": "1.0.0",
"description": "Goa-GEL Platform Documentation Service",
"main": "index.js",
"version": "2.0.0",
"description": "Goa-GEL Platform Documentation - Government e-Licensing",
"type": "module",
"scripts": {
"start": "http-server public -p 8080",
"build": "node build.js",
"dev": "http-server public -p 8080 -o"
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview --port 8080",
"serve": "vitepress build && vitepress preview --port 8080"
},
"keywords": [
"documentation",
"goa-gel",
"user-guide"
"blockchain",
"e-licensing",
"government"
],
"author": "Goa Government",
"author": "Government of Goa",
"license": "MIT",
"dependencies": {
"http-server": "^14.1.1",
"marked": "^11.1.1",
"highlight.js": "^11.9.0"
"devDependencies": {
"vitepress": "^1.5.0",
"vue": "^3.5.13"
}
}