-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.69 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@slicervm/sdk",
"version": "0.1.7",
"description": "TypeScript SDK for the Slicer VM control-plane API.",
"license": "MIT",
"author": "Alex Ellis <alex@openfaas.com>",
"homepage": "https://slicervm.com",
"repository": {
"type": "git",
"url": "git+https://github.com/slicervm/sdk-ts.git"
},
"bugs": {
"url": "https://github.com/slicervm/sdk-ts/issues"
},
"keywords": [
"slicer",
"slicervm",
"microvm",
"vm",
"sandbox",
"firecracker",
"cloud-hypervisor",
"virtualization",
"exec",
"sdk"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./shell": {
"import": {
"types": "./dist/shell.d.ts",
"default": "./dist/shell.js"
},
"require": {
"types": "./dist/shell.d.cts",
"default": "./dist/shell.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run typecheck && npm run build"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@types/ws": "^8.5.10",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}