@pablofdezr/microvm 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.
@@ -0,0 +1,5 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+ export {};
package/dist/types.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Wire types for the microvm API.
3
+ *
4
+ * These mirror the server's public types exactly. They are hand-written rather
5
+ * than generated so the names read naturally in TypeScript, and so a field
6
+ * added server-side is a deliberate change here rather than a silent one.
7
+ */
8
+ export {};
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@pablofdezr/microvm",
3
+ "version": "0.1.0",
4
+ "description": "Client for the microvm sandbox API: run untrusted code in Firecracker microVMs",
5
+ "keywords": [
6
+ "microvm",
7
+ "firecracker",
8
+ "sandbox",
9
+ "isolation",
10
+ "untrusted-code",
11
+ "vm",
12
+ "sdk"
13
+ ],
14
+ "homepage": "https://github.com/pablofdezr/microvm/tree/main/sdk/typescript#readme",
15
+ "bugs": "https://github.com/pablofdezr/microvm/issues",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/pablofdezr/microvm.git",
19
+ "directory": "sdk/typescript"
20
+ },
21
+ "license": "Apache-2.0",
22
+ "author": "pablofdezruiz",
23
+ "type": "module",
24
+ "main": "./dist/client.js",
25
+ "types": "./dist/client.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/client.d.ts",
29
+ "import": "./dist/client.js"
30
+ }
31
+ },
32
+ "sideEffects": false,
33
+ "files": ["dist"],
34
+ "scripts": {
35
+ "build": "tsc",
36
+ "typecheck": "tsc --noEmit",
37
+ "prepublishOnly": "npm run build"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ },
42
+ "devDependencies": {
43
+ "typescript": "^5.6.0"
44
+ },
45
+ "engines": {
46
+ "node": ">=18"
47
+ }
48
+ }