@labring/devbox-sdk 1.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/README.md +478 -0
- package/dist/index.cjs +2691 -0
- package/dist/index.d.cts +875 -0
- package/dist/index.d.ts +875 -0
- package/dist/index.mjs +2665 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@labring/devbox-sdk",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Enterprise TypeScript SDK for Sealos Devbox management",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.mjs"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
},
|
|
19
|
+
"default": "./dist/index.mjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22.0.0"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest watch",
|
|
30
|
+
"lint": "biome check src/",
|
|
31
|
+
"lint:fix": "biome check --write src/",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"clean": "rm -rf dist"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"README.md"
|
|
38
|
+
],
|
|
39
|
+
"keywords": [
|
|
40
|
+
"sealos",
|
|
41
|
+
"devbox",
|
|
42
|
+
"sdk",
|
|
43
|
+
"typescript",
|
|
44
|
+
"cloud-development",
|
|
45
|
+
"container",
|
|
46
|
+
"http-api"
|
|
47
|
+
],
|
|
48
|
+
"author": {
|
|
49
|
+
"name": "zjy365",
|
|
50
|
+
"email": "3161362058@qq.com",
|
|
51
|
+
"url": "https://github.com/zjy365"
|
|
52
|
+
},
|
|
53
|
+
"license": "Apache-2.0",
|
|
54
|
+
"homepage": "https://github.com/zjy365/devbox-sdk#readme",
|
|
55
|
+
"bugs": {
|
|
56
|
+
"url": "https://github.com/zjy365/devbox-sdk/issues"
|
|
57
|
+
},
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "https://github.com/zjy365/devbox-sdk.git",
|
|
61
|
+
"directory": "packages/sdk"
|
|
62
|
+
},
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public",
|
|
65
|
+
"registry": "https://registry.npmjs.org/"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"js-yaml": "^4.1.0"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@types/js-yaml": "^4.0.9",
|
|
72
|
+
"@types/node": "^20.14.10",
|
|
73
|
+
"devbox-shared": "workspace:*",
|
|
74
|
+
"tsup": "^8.0.0"
|
|
75
|
+
}
|
|
76
|
+
}
|