@hudhod/core 0.1.0
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/LICENSE +21 -0
- package/README.md +165 -0
- package/dist/index.d.ts +1017 -0
- package/dist/index.js +2084 -0
- package/dist/paths-B3gr2EuI.js +282 -0
- package/dist/spawner-CqGITKbd.d.ts +150 -0
- package/dist/webcontainer/index.d.ts +67 -0
- package/dist/webcontainer/index.js +200 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hudhod/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Headless runtime for hudhod — file system, search, diff, process, command, and extension host services for an in-browser IDE.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"browser-ide",
|
|
7
|
+
"extension-host",
|
|
8
|
+
"hudhod",
|
|
9
|
+
"ide",
|
|
10
|
+
"webcontainer"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"type": "module",
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./webcontainer": {
|
|
24
|
+
"types": "./dist/webcontainer/index.d.ts",
|
|
25
|
+
"default": "./dist/webcontainer/index.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@hudhod/sdk": "0.1.0",
|
|
33
|
+
"diff": "^8.0.2",
|
|
34
|
+
"picomatch": "^4.0.3",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/picomatch": "^4.0.2",
|
|
39
|
+
"@webcontainer/api": "^1.6.4"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@webcontainer/api": "^1.6.4"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"@webcontainer/api": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsdown",
|
|
51
|
+
"test": "vitest run",
|
|
52
|
+
"typecheck": "tsc --noEmit"
|
|
53
|
+
}
|
|
54
|
+
}
|