-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.53 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
{
"name": "@deepfates/splice",
"version": "0.3.0",
"description": "splice — convert social/chat exports into normalized threads and export to Markdown and OAI JSONL",
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"splice": "dist/cli/splice.js"
},
"files": [
"dist/**",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"start": "tsx src/cli/splice.ts",
"dev": "tsx watch src/cli/splice.ts",
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "vitest run --reporter verbose",
"test:watch": "vitest",
"test:integration": "vitest run tests/integration/**/*.test.ts --reporter verbose",
"clean": "rm -rf dist out"
},
"keywords": [
"cli",
"convert",
"twitter",
"markdown",
"oai",
"jsonl",
"threads",
"export",
"archive"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deepfates/splice.git"
},
"bugs": {
"url": "https://github.com/deepfates/splice/issues"
},
"homepage": "https://github.com/deepfates/splice#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@atproto/api": "^0.18.0",
"@atproto/repo": "^0.8.10",
"cosmiconfig": "^9.0.0",
"glowfic-dl": "^0.2.1"
},
"devDependencies": {
"@types/node": "^22.7.4",
"execa": "^9.4.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^2.1.3"
}
}