@langgenius/nodwork-linux-x64 0.0.0-bootstrap.0 → 0.0.1-beta
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 +3 -2
- package/package.json +24 -6
- package/payload/.env.example +2 -0
- package/payload/dist/chunk-BwDYZCav.js +1 -0
- package/payload/dist/cli.d.ts +4 -0
- package/payload/dist/cli.js +514 -0
- package/payload/dist/devtools-D4NxccOc.js +96 -0
- package/payload/dist/token-CqKQPcXv.js +1 -0
- package/payload/dist/token-error-CxiWEZm9.js +1 -0
- package/payload/dist/token-util-CiNuS5JL.js +1 -0
- package/payload/dist/token-util-Cscbk5az.js +1 -0
- package/payload/package.json +54 -0
- package/payload/vendor/node-pty/LICENSE +69 -0
- package/payload/vendor/node-pty/build/Release/pty.node +0 -0
- package/payload/vendor/node-pty/lib/eventEmitter2.js +46 -0
- package/payload/vendor/node-pty/lib/index.js +51 -0
- package/payload/vendor/node-pty/lib/terminal.js +189 -0
- package/payload/vendor/node-pty/lib/unixTerminal.js +345 -0
- package/payload/vendor/node-pty/lib/utils.js +38 -0
- package/payload/vendor/node-pty/package.json +64 -0
package/README.md
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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.
|
|
3
|
+
"version": "0.0.1-beta",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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 @@
|
|
|
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};
|