-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.15 KB
/
package.json
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
{
"name": "fyi-migration",
"version": "1.0.0",
"description": "Migration code for eaton.fyi",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"/dist",
"README.md"
],
"scripts": {
"build": "shx rm -rf dist; shx rm -rf .tsimp; pkgroll --minify",
"format": "prettier --config prettier.config.js 'src/**/*.ts' --write",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"prepare": "npm run build",
"summarize": "node --import=tsimp ./src/scripts/summarize.ts",
"fixhtml": "node --import=tsimp ./src/scripts/fix-book-hashes.ts",
"migrate": "node --import=tsimp ./src/scripts/migrate.ts",
"scratchpad": "node --import=tsimp ./src/scripts/scratchpad.ts",
"generate": "node --import=tsimp ./src/scripts/generate.ts",
"thumbs": "node --import=tsimp ./src/scripts/thumbnails.ts",
"test": "ava"
},
"author": "eaton",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eaton/fyi-migration.git"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"ava": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"pkgroll": "^2.0.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"shx": "^0.3.4",
"tsimp": "^2.0.12",
"typescript-eslint": "^7.9.0"
},
"dependencies": {
"@eatonfyi/dates": "github:eaton/dates",
"@eatonfyi/fs-jetpack": "github:eaton/fs-jetpack",
"@eatonfyi/html": "github:eaton/html",
"@eatonfyi/ids": "github:eaton/ids",
"@eatonfyi/keynote-extractor": "github:eaton/keynote-extractor",
"@eatonfyi/ljarchive": "github:eaton/ljarchive",
"@eatonfyi/mbox-streamer": "github:eaton/mbox-streamer",
"@eatonfyi/schema": "github:eaton/schema",
"@eatonfyi/serializers": "github:eaton/serializers",
"@eatonfyi/text": "github:eaton/text",
"@eatonfyi/urls": "github:eaton/urls",
"@omnivore-app/api": "^1.0.4",
"@serguun42/tumblr.js": "^4.2.0",
"@sindresorhus/is": "^6.3.1",
"@thi.ng/mime": "^2.6.11",
"@types/jszip": "^3.4.1",
"@types/mailparser": "^3.4.4",
"@types/node": "^20.14.12",
"@typescript-eslint/typescript-estree": "^7.15.0",
"arangojs": "^8.8.1",
"crawlee": "^3.10.2",
"dotenv": "^16.4.5",
"emptier": "^1.2.0",
"empty-deep": "^1.0.0",
"execa": "^9.2.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"humanize-url": "^3.0.0",
"jszip": "^3.10.1",
"linkifyjs": "^4.1.3",
"mailparser": "^3.7.1",
"mdb-reader": "^3.0.0",
"micromatch": "^4.0.7",
"node-unrar-js": "^2.0.2",
"obby": "^1.2.0",
"ollama": "^0.5.7",
"open": "^10.1.0",
"p-queue": "^8.0.1",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0",
"simple-thumbnail-ts": "^1.0.2",
"tasuku": "^2.0.1",
"twitter-archive-reader": "^7.2.0",
"typescript": "^5.5.4",
"wretch": "^2.8.1",
"zod": "^3.23.8"
}
}