@dreamlake/ml-dash 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 +98 -0
- package/bin/ml-dash.js +5 -0
- package/dist/auth/device-flow.js +131 -0
- package/dist/auth/device-secret.js +20 -0
- package/dist/auth/fernet.js +98 -0
- package/dist/auth/jwt.js +12 -0
- package/dist/auth/token-storage.js +217 -0
- package/dist/cli/context.js +34 -0
- package/dist/cli/parser.js +153 -0
- package/dist/client.js +588 -0
- package/dist/commands/api.js +89 -0
- package/dist/commands/create.js +82 -0
- package/dist/commands/download.js +661 -0
- package/dist/commands/list.js +341 -0
- package/dist/commands/login.js +128 -0
- package/dist/commands/logout.js +22 -0
- package/dist/commands/profile.js +143 -0
- package/dist/commands/remove.js +123 -0
- package/dist/commands/upload.js +786 -0
- package/dist/commands/version.js +10 -0
- package/dist/config.js +64 -0
- package/dist/index.js +74 -0
- package/dist/local/safe-path.js +137 -0
- package/dist/local/storage.js +447 -0
- package/dist/util/ansi.js +78 -0
- package/dist/util/glob.js +47 -0
- package/dist/util/json.js +70 -0
- package/dist/util/pool.js +30 -0
- package/dist/version.js +3 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dreamlake/ml-dash",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "ml-dash \u2014 ML experiment tracking CLI. Authenticate, inspect projects and experiments, and move experiment data to and from an ML-Dash server.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"ml-dash": "bin/ml-dash.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"dist",
|
|
13
|
+
"!dist/**/*.map"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.19"
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/fortyfive-labs/ml-dash-cli.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://docs.dash.ml",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"machine-learning",
|
|
29
|
+
"experiment-tracking",
|
|
30
|
+
"mlops",
|
|
31
|
+
"cli"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsc",
|
|
35
|
+
"cli": "tsx src/index.ts",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"test": "npm run build && node --import tsx --test test/*.test.ts",
|
|
38
|
+
"build:release": "bun run scripts/build-release.ts"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"qrcode": "^1.5.4"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^22.10.0",
|
|
45
|
+
"@types/qrcode": "^1.5.5",
|
|
46
|
+
"tsx": "^4.19.0",
|
|
47
|
+
"typescript": "^5.7.0"
|
|
48
|
+
}
|
|
49
|
+
}
|