-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "chat-dl",
"version": "0.0.7",
"files": ["bin", "dist"],
"bin": {
"chat-dl": "bin/chat-dl"
},
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"scripts": {
"ci": "npx @biomejs/biome ci .",
"format": "npx @biomejs/biome format --write .",
"lint": "npx @biomejs/biome lint --write .",
"start": "tsx src/bin/chat-dl.ts",
"verify:claude-jsonl": "tsx scripts/verify-claude-jsonl.ts",
"verify:codex-jsonl": "tsx scripts/verify-codex-jsonl.ts",
"prebuild": "rm -rf dist",
"build": "npm run build:bin && npm run build:cjs",
"build:bin": "tsup src/bin",
"build:cjs": "tsc --declaration true --noEmit false --outDir dist/cjs",
"prepublic": "npm run ci && npm run build",
"public": "npm publish --access public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@putout/minify": "^4.12.3",
"@tsconfig/strictest": "^2.0.5",
"@types/yargs": "^17.0.33",
"acorn": "^8.14.1",
"espree": "^10.3.0",
"hermes-parser": "^0.27.0",
"tenko": "^2.0.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"@streamparser/json-node": "^0.0.22",
"file-system-cache": "^2.4.7",
"puppeteer": "^24.4.0",
"putout": "^39.0.11",
"uuid": "^11.1.0",
"valibot": "^1.0.0",
"yargs": "^17.7.2"
}
}