@langgenius/nodwork-linux-x64 0.0.0-bootstrap.0 → 0.0.1-beta-fix

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/README.md CHANGED
@@ -1,2 +1,3 @@
1
- Bootstrap placeholder package reserved for nod.work trusted publishing setup.
2
- Do not install. Real releases will be published under a normal dist-tag.
1
+ # `@langgenius/nodwork-linux-x64`
2
+
3
+ Internal platform payload package for `nodwork` on Linux x64.
package/package.json CHANGED
@@ -1,10 +1,28 @@
1
1
  {
2
2
  "name": "@langgenius/nodwork-linux-x64",
3
- "version": "0.0.0-bootstrap.0",
3
+ "version": "0.0.1-beta-fix",
4
4
  "private": false,
5
- "description": "Bootstrap placeholder package reserved for nod.work release setup.",
6
- "publishConfig": { "access": "public" },
7
- "os": ["linux"],
8
- "cpu": ["x64"],
9
- "license": "MIT"
5
+ "description": "Platform payload package for nodwork on linux x64.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/langgenius/echo.git",
9
+ "directory": "npm/nodwork-linux-x64"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/langgenius/echo/issues"
13
+ },
14
+ "files": [
15
+ "README.md",
16
+ "payload",
17
+ "package.json"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "os": [
23
+ "linux"
24
+ ],
25
+ "cpu": [
26
+ "x64"
27
+ ]
10
28
  }
@@ -0,0 +1,6 @@
1
+ API_BASE_URL=http://localhost:3001
2
+ WS_BASE_URL=ws://localhost:3001/ws
3
+
4
+ # Optional build-time defaults for packaged releases. CI can inject either name.
5
+ # NODWORK_BUNDLED_SERVICE_BASE_URL=https://nod.work
6
+ # VITE_SERVICE_BASE_URL=https://nod.work
@@ -0,0 +1 @@
1
+ import{createRequire as e}from"node:module";var t=Object.create,n=Object.defineProperty,r=Object.getOwnPropertyDescriptor,i=Object.getOwnPropertyNames,a=Object.getPrototypeOf,o=Object.prototype.hasOwnProperty,s=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),c=(e,t)=>{let r={};for(var i in e)n(r,i,{get:e[i],enumerable:!0});return t||n(r,Symbol.toStringTag,{value:`Module`}),r},l=(e,t,a,s)=>{if(t&&typeof t==`object`||typeof t==`function`)for(var c=i(t),l=0,u=c.length,d;l<u;l++)d=c[l],!o.call(e,d)&&d!==a&&n(e,d,{get:(e=>t[e]).bind(null,d),enumerable:!(s=r(t,d))||s.enumerable});return e},u=(e,r,i)=>(i=e==null?{}:t(a(e)),l(r||!e||!e.__esModule?n(i,`default`,{value:e,enumerable:!0}):i,e)),d=e(import.meta.url);export{u as i,c as n,d as r,s as t};
@@ -0,0 +1,4 @@
1
+ //#region src/cli.d.ts
2
+ declare const runCli: (argv?: string[]) => Promise<void>;
3
+ //#endregion
4
+ export { runCli };