@grindxp/cli 0.1.0 → 0.1.1
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/dist/index.js +1459 -6274
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grindxp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Grind — a gamified productivity CLI. Track quests, earn XP, build streaks.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -32,10 +32,14 @@
|
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
34
|
"start": "bun src/index.ts",
|
|
35
|
-
"build": "bun build src/index.ts --outdir dist --target bun --sourcemap=none --banner '#!/usr/bin/env bun' && chmod +x dist/index.js",
|
|
35
|
+
"build": "bun build src/index.ts --outdir dist --target bun --sourcemap=none --external @libsql/client --banner '#!/usr/bin/env bun' && chmod +x dist/index.js",
|
|
36
|
+
"build:binary": "bun build-binary.ts",
|
|
36
37
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
37
38
|
"prepublishOnly": "bun run build && bun run typecheck"
|
|
38
39
|
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@libsql/client": "^0.15.15"
|
|
42
|
+
},
|
|
39
43
|
"devDependencies": {
|
|
40
44
|
"@clack/prompts": "^1.0.1",
|
|
41
45
|
"@grindxp/core": "0.1.0",
|