fix: use patched compiler for docs deployment

This commit is contained in:
2026-08-03 00:09:47 +05:30
parent 8d5d4b8f12
commit 76d4e5825a
9 changed files with 671 additions and 224 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"name": "@wrnexus/compiler",
"version": "0.8.0",
"type": "module",
"description": "@wrnexus/compiler — part of the WrNexus framework.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.workroot.in/WorkRoot/WRNexusJS.git",
"directory": "packages/compiler"
},
"homepage": "https://wrnexusjs.dev/packages/compiler",
"bugs": {
"url": "https://git.workroot.in/WorkRoot/WRNexusJS/issues"
},
"keywords": [
"wrnexus",
"bun",
"typescript",
"compiler"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "restricted"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"dependencies": {
"@wrnexus/csr": "^0.8.0",
"@wrnexus/syntax": "^0.8.0",
"@wrnexus/store": "^0.8.0",
"@wrnexus/validation": "^0.8.0"
},
"files": [
"dist",
"README.md"
]
}