forked from SebastienGosa/librarfree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.98 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
{
"name": "librarfree",
"version": "0.1.0",
"private": true,
"description": "The world's largest legal free digital library — 100% open source, multilingual, and community-driven.",
"packageManager": "pnpm@9.12.3",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yml,yaml}\"",
"test": "turbo run test",
"clean": "turbo run clean && rimraf node_modules .turbo",
"db:push": "turbo run db:push --filter=@librarfree/db",
"db:migrate": "turbo run db:migrate --filter=@librarfree/db",
"db:studio": "turbo run db:studio --filter=@librarfree/db",
"db:seed": "turbo run db:seed --filter=@librarfree/db",
"import:gutenberg": "pnpm --filter=@librarfree/importer-gutenberg start --",
"import:standard-ebooks": "turbo run import:standard-ebooks --filter=@librarfree/importer-standard-ebooks",
"import:gallica": "turbo run import:gallica --filter=@librarfree/importer-gallica",
"import:wikisource": "turbo run import:wikisource --filter=@librarfree/importer-wikisource",
"embeddings": "turbo run embeddings --filter=@librarfree/embedder"
},
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SebastienGosa/librarfree.git"
},
"keywords": [
"library",
"ebooks",
"public-domain",
"free-books",
"multilingual",
"open-source",
"gutenberg",
"wikisource",
"digital-library"
],
"author": "Sebastien Gosa <deproot.sebastien@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SebastienGosa/librarfree/issues"
},
"homepage": "https://librarfree.com"
}