@dzhng/crm.cli 0.2.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 +1312 -0
- package/dist/cli.js +4291 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dzhng/crm.cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Headless CLI-first CRM",
|
|
5
|
+
"author": "David Zhang",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/dzhng/crm.cli.git"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"crm": "./dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "bun build src/cli.ts --outdir dist --target node --format esm --external @libsql/client --external drizzle-orm --external commander --external libphonenumber-js --external normalize-url --external toml --external ulid",
|
|
22
|
+
"crm": "bun run src/cli.ts",
|
|
23
|
+
"check-types": "tsc --noEmit",
|
|
24
|
+
"test": "bun test --timeout 30000",
|
|
25
|
+
"lint": "ultracite fix",
|
|
26
|
+
"prepublishOnly": "bun run build",
|
|
27
|
+
"prepare": "husky"
|
|
28
|
+
},
|
|
29
|
+
"lint-staged": {
|
|
30
|
+
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
|
|
31
|
+
"npx ultracite fix"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@libsql/client": "^0.17.0",
|
|
36
|
+
"commander": "^13.1.0",
|
|
37
|
+
"drizzle-orm": "^0.45.1",
|
|
38
|
+
"libphonenumber-js": "^1.12.0",
|
|
39
|
+
"normalize-url": "^9.0.0",
|
|
40
|
+
"toml": "^3.0.0",
|
|
41
|
+
"ulid": "^2.3.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@biomejs/biome": "^2.4.4",
|
|
45
|
+
"@types/bun": "^1.2.10",
|
|
46
|
+
"drizzle-kit": "^0.31.9",
|
|
47
|
+
"husky": "^9.1.7",
|
|
48
|
+
"lint-staged": "^16.4.0",
|
|
49
|
+
"typescript": "~5.9.3",
|
|
50
|
+
"ultracite": "^7.2.3"
|
|
51
|
+
}
|
|
52
|
+
}
|