-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.6 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "chat-to-map",
"version": "0.1.0",
"description": "Extract 'things to do' from chat exports and visualize them on a map",
"type": "module",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DocSpring/chat_to_map.git"
},
"homepage": "https://github.com/DocSpring/chat_to_map#readme",
"bugs": {
"url": "https://github.com/DocSpring/chat_to_map/issues"
},
"keywords": [
"whatsapp",
"imessage",
"chat",
"export",
"map",
"activities",
"travel",
"geocoding",
"cli",
"parser",
"suggestions",
"places"
],
"author": "DocSpring",
"bin": {
"chat-to-map": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js",
"default": "./dist/core/index.js"
},
"./node-exports": {
"types": "./dist/node-exports/index.d.ts",
"import": "./dist/node-exports/index.js",
"default": "./dist/node-exports/index.js"
},
"./shared": {
"types": "./dist/shared/index.d.ts",
"import": "./dist/shared/index.js",
"default": "./dist/shared/index.js"
},
"./costs": {
"types": "./dist/costs/index.d.ts",
"import": "./dist/costs/index.js",
"default": "./dist/costs/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"cli": "bun run src/cli.ts",
"dev": "bun run --watch src/cli.ts",
"build": "bun build src/index.ts --outdir dist --target bun && bun build src/core/index.ts --outdir dist/core --target bun && bun build src/node-exports/index.ts --outdir dist/node-exports --target node && bun build src/shared/index.ts --outdir dist/shared --target bun && bun build src/costs/index.ts --outdir dist/costs --target bun && bun build src/cli.ts --outdir dist --target bun && tsc -p tsconfig.types.json",
"build:types": "tsc -p tsconfig.types.json",
"build:types:watch": "tsc -p tsconfig.types.json --watch",
"build:binary": "bun build src/cli.ts --compile --outfile chat-to-map",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"format": "biome format --write .",
"duplication": "jscpd src/",
"knip": "knip",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run --config src/cli/e2e/vitest.config.ts src/cli/e2e/",
"prepublishOnly": "bun run build && bun run test"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "^1.2.9",
"@types/pdfkit": "^0.17.4",
"@vitest/coverage-v8": "^3.0.0",
"jscpd": "^4.0.5",
"knip": "https://pkg.pr.new/knip@991",
"lefthook": "^1.11.0",
"typescript": "^5.9.3",
"undici-types": "^7.18.2",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"biome": "^0.3.3",
"commander": "^14.0.2",
"csv-parse": "^6.1.0",
"exceljs": "^4.4.0",
"html-entities": "^2.6.0",
"i18n-iso-countries": "^7.14.0",
"js-tiktoken": "^1.0.21",
"jszip": "^3.10.1",
"lucide-static": "^0.562.0",
"pdfkit": "^0.17.2",
"sharp": "^0.34.5"
},
"peerDependencies": {
"openai": "^4.0.0",
"@anthropic-ai/sdk": "^0.39.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}