-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "crm-cli",
"version": "1.0.0",
"description": "Headless CLI-first CRM",
"author": "jordicatafal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jordicatafal/crm-cli.git"
},
"type": "module",
"bin": {
"crm": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node --format esm --define __PKG_VERSION__=\"'$(node -p \"require('./package.json').version\")'\" --external @libsql/client --external drizzle-orm --external commander --external libphonenumber-js --external normalize-url --external toml --external ulid --external react --external react/jsx-runtime --external ink --external ink-text-input --external ink-spinner",
"crm": "bun run src/cli.ts",
"tui": "bun run src/cli.ts",
"check-types": "tsc --noEmit",
"test": "bun test --timeout 30000",
"lint": "ultracite fix",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@libsql/client": "^0.17.0",
"commander": "^13.1.0",
"drizzle-orm": "^0.45.1",
"ink": "5.2.1",
"ink-spinner": "5.0.0",
"ink-text-input": "6.0.0",
"libphonenumber-js": "^1.12.0",
"normalize-url": "^9.0.0",
"react": "18.3.1",
"toml": "^3.0.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.2.10",
"@types/react": "18.3.28",
"drizzle-kit": "^0.31.9",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"typescript": "~5.9.3",
"ultracite": "^7.2.3"
}
}