@dexlyai/dexly 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/README.md +61 -0
- package/dist/cli.js +1404 -0
- package/dist/host.js +859 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dexlyai/dexly",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"bin": {
|
|
6
|
+
"dexly": "dist/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=20.0.0"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dexly": "npm run dexly:dev",
|
|
16
|
+
"dexly:dev": "bash scripts/dev-watch-and-install.sh",
|
|
17
|
+
"build:production": "bash scripts/build-production.sh",
|
|
18
|
+
"clean": "node scripts/clean-dist.mjs",
|
|
19
|
+
"protocol:build": "npm --prefix ../DexlyProtocol run build",
|
|
20
|
+
"build": "npm run clean && npm run protocol:build && tsc -p tsconfig.json --noEmit && node scripts/build-bundles.mjs",
|
|
21
|
+
"test": "vitest run tests",
|
|
22
|
+
"dexly:build": "npm run build",
|
|
23
|
+
"dexly:test": "npm run test",
|
|
24
|
+
"dexly:install": "npm run build && npm run install-host",
|
|
25
|
+
"dexly:doctor": "npm run build && npm run doctor",
|
|
26
|
+
"host": "node dist/cli.js host",
|
|
27
|
+
"install-host": "node dist/cli.js install",
|
|
28
|
+
"doctor": "node dist/cli.js doctor",
|
|
29
|
+
"version:print": "node dist/cli.js version",
|
|
30
|
+
"check:imports": "node scripts/check-no-cross-repo-imports.mjs",
|
|
31
|
+
"prepack": "npm run build && npm run test && npm run check:imports"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@dexly/protocol": "file:../DexlyProtocol",
|
|
38
|
+
"@types/node": "^24.5.2",
|
|
39
|
+
"esbuild": "^0.25.10",
|
|
40
|
+
"typescript": "^5.9.3",
|
|
41
|
+
"vitest": "^3.2.4"
|
|
42
|
+
}
|
|
43
|
+
}
|